Uses of Interface
org.sonatype.aether.artifact.Artifact

Packages that use Artifact
org.sonatype.aether   
org.sonatype.aether.artifact   
org.sonatype.aether.deployment   
org.sonatype.aether.graph   
org.sonatype.aether.impl   
org.sonatype.aether.impl.internal   
org.sonatype.aether.installation   
org.sonatype.aether.repository   
org.sonatype.aether.resolution   
org.sonatype.aether.spi.connector   
org.sonatype.aether.test.impl   
org.sonatype.aether.test.util   
org.sonatype.aether.test.util.impl   
org.sonatype.aether.transfer   
org.sonatype.aether.util.artifact   
org.sonatype.aether.util.graph   
org.sonatype.aether.util.layout   
org.sonatype.aether.util.listener   
org.sonatype.aether.util.repository   
 

Uses of Artifact in org.sonatype.aether
 

Methods in org.sonatype.aether that return Artifact
 Artifact RepositoryEvent.getArtifact()
          Gets the artifact involved in the event (if any).
 

Method parameters in org.sonatype.aether with type arguments of type Artifact
 void SyncContext.acquire(Collection<? extends Artifact> artifacts, Collection<? extends Metadata> metadatas)
          Acquires synchronized access to the specified artifacts and metadatas.
 

Uses of Artifact in org.sonatype.aether.artifact
 

Methods in org.sonatype.aether.artifact that return Artifact
 Artifact Artifact.setFile(File file)
          Sets the file of the artifact.
 Artifact Artifact.setProperties(Map<String,String> properties)
          Sets the properties for the artifact.
 Artifact Artifact.setVersion(String version)
          Sets the version of this artifact.
 

Uses of Artifact in org.sonatype.aether.deployment
 

Methods in org.sonatype.aether.deployment that return types with arguments of type Artifact
 Collection<Artifact> DeployRequest.getArtifacts()
          Gets the artifact to deploy.
 Collection<Artifact> DeployResult.getArtifacts()
          Gets the artifact that got deployed.
 

Methods in org.sonatype.aether.deployment with parameters of type Artifact
 DeployRequest DeployRequest.addArtifact(Artifact artifact)
          Adds the specified artifacts for deployment.
 DeployResult DeployResult.addArtifact(Artifact artifact)
          Adds the specified artifacts to the result.
 

Method parameters in org.sonatype.aether.deployment with type arguments of type Artifact
 DeployRequest DeployRequest.setArtifacts(Collection<Artifact> artifacts)
          Sets the artifacts to deploy.
 DeployResult DeployResult.setArtifacts(Collection<Artifact> artifacts)
          Sets the artifacts that got deployed.
 

Uses of Artifact in org.sonatype.aether.graph
 

Methods in org.sonatype.aether.graph that return Artifact
 Artifact Dependency.getArtifact()
          Gets the artifact being depended on.
 

Methods in org.sonatype.aether.graph that return types with arguments of type Artifact
 Collection<Artifact> DependencyNode.getAliases()
          Gets the known aliases for this dependency's artifact.
 List<Artifact> DependencyNode.getRelocations()
          Gets the sequence of relocations that was followed to resolve the artifact referenced by the dependency.
 

Methods in org.sonatype.aether.graph with parameters of type Artifact
 void DependencyNode.setArtifact(Artifact artifact)
          Sets the artifact of the dependency.
 Dependency Dependency.setArtifact(Artifact artifact)
          Sets the artifact being depended on.
 

Constructors in org.sonatype.aether.graph with parameters of type Artifact
Dependency(Artifact artifact, String scope)
          Creates a mandatory dependency on the specified artifact with the given scope.
Dependency(Artifact artifact, String scope, boolean optional)
          Creates a dependency on the specified artifact with the given scope.
Dependency(Artifact artifact, String scope, boolean optional, Collection<Exclusion> exclusions)
          Creates a dependency on the specified artifact with the given scope and exclusions.
 

Uses of Artifact in org.sonatype.aether.impl
 

Methods in org.sonatype.aether.impl that return Artifact
 Artifact LocalRepositoryEvent.getArtifact()
          Gets the artifact that was updated.
 Artifact MetadataGenerator.transformArtifact(Artifact artifact)
          Enables the metadata generator to transform the specified artifact.
 

Methods in org.sonatype.aether.impl with parameters of type Artifact
 Artifact MetadataGenerator.transformArtifact(Artifact artifact)
          Enables the metadata generator to transform the specified artifact.
 

Method parameters in org.sonatype.aether.impl with type arguments of type Artifact
 void UpdateCheckManager.checkArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
          Checks whether an artifact has to be updated from a remote repository.
 Collection<? extends Metadata> MetadataGenerator.finish(Collection<? extends Artifact> artifacts)
          Allows for metadata generation based on the transformed artifacts.
 Collection<? extends Metadata> MetadataGenerator.prepare(Collection<? extends Artifact> artifacts)
          Prepares the generator to transform artifacts.
 void UpdateCheckManager.touchArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
          Updates the timestamp for the artifact contained in the update check.
 

Uses of Artifact in org.sonatype.aether.impl.internal
 

Methods in org.sonatype.aether.impl.internal that return Artifact
 Artifact DefaultLocalRepositoryEvent.getArtifact()
           
 

Methods in org.sonatype.aether.impl.internal with parameters of type Artifact
 String SimpleLocalRepositoryManager.getPathForLocalArtifact(Artifact artifact)
           
 String SimpleLocalRepositoryManager.getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, String context)
           
 

Method parameters in org.sonatype.aether.impl.internal with type arguments of type Artifact
 void DefaultUpdateCheckManager.checkArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
           
 void DefaultUpdateCheckManager.touchArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)
           
 

Constructors in org.sonatype.aether.impl.internal with parameters of type Artifact
DefaultLocalRepositoryEvent(LocalRepositoryEvent.EventType type, RepositorySystemSession session, Artifact artifact, File file)
           
 

Uses of Artifact in org.sonatype.aether.installation
 

Methods in org.sonatype.aether.installation that return types with arguments of type Artifact
 Collection<Artifact> InstallResult.getArtifacts()
          Gets the artifact that got installed.
 Collection<Artifact> InstallRequest.getArtifacts()
          Gets the artifact to install.
 

Methods in org.sonatype.aether.installation with parameters of type Artifact
 InstallResult InstallResult.addArtifact(Artifact artifact)
          Adds the specified artifacts to the result.
 InstallRequest InstallRequest.addArtifact(Artifact artifact)
          Adds the specified artifacts for installation.
 

Method parameters in org.sonatype.aether.installation with type arguments of type Artifact
 InstallResult InstallResult.setArtifacts(Collection<Artifact> artifacts)
          Sets the artifacts that got installed.
 InstallRequest InstallRequest.setArtifacts(Collection<Artifact> artifacts)
          Sets the artifacts to install.
 

Uses of Artifact in org.sonatype.aether.repository
 

Methods in org.sonatype.aether.repository that return Artifact
 Artifact LocalArtifactRequest.getArtifact()
          Gets the artifact to query for.
 Artifact LocalArtifactRegistration.getArtifact()
          Gets the artifact to register.
 

Methods in org.sonatype.aether.repository with parameters of type Artifact
 File WorkspaceReader.findArtifact(Artifact artifact)
          Locates the specified artifact.
 List<String> WorkspaceReader.findVersions(Artifact artifact)
          Determines all available versions of the specified artifact.
 String LocalRepositoryManager.getPathForLocalArtifact(Artifact artifact)
          Gets the relative path for a locally installed artifact.
 String LocalRepositoryManager.getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, String context)
          Gets the relative path for an artifact cached from a remote repository.
 LocalArtifactRequest LocalArtifactRequest.setArtifact(Artifact artifact)
          Sets the artifact to query for.
 LocalArtifactRegistration LocalArtifactRegistration.setArtifact(Artifact artifact)
          Sets the artifact to register.
 

Constructors in org.sonatype.aether.repository with parameters of type Artifact
LocalArtifactRegistration(Artifact artifact)
          Creates a registration request for the specified (locally built) artifact.
LocalArtifactRegistration(Artifact artifact, RemoteRepository repository, Collection<String> contexts)
          Creates a registration request for the specified (remotely resolved) artifact.
LocalArtifactRequest(Artifact artifact, List<RemoteRepository> repositories, String context)
          Creates a query with the specified properties.
 

Uses of Artifact in org.sonatype.aether.resolution
 

Methods in org.sonatype.aether.resolution that return Artifact
 Artifact ArtifactResult.getArtifact()
          Gets the resolved artifact (if any).
 Artifact VersionRangeRequest.getArtifact()
          Gets the artifact whose version range shall be resolved.
 Artifact ArtifactDescriptorRequest.getArtifact()
          Gets the artifact whose descriptor shall be read.
 Artifact VersionRequest.getArtifact()
          Gets the artifact whose (meta-)version shall be resolved.
 Artifact ArtifactRequest.getArtifact()
          Gets the artifact to resolve.
 Artifact ArtifactDescriptorResult.getArtifact()
          Gets the artifact whose descriptor was read.
 

Methods in org.sonatype.aether.resolution that return types with arguments of type Artifact
 Collection<Artifact> ArtifactDescriptorResult.getAliases()
          Gets the known aliases for this artifact.
 List<Artifact> ArtifactDescriptorResult.getRelocations()
          Gets the relocations that were processed to read the artifact descriptor.
 

Methods in org.sonatype.aether.resolution with parameters of type Artifact
 ArtifactDescriptorResult ArtifactDescriptorResult.addAlias(Artifact alias)
          Records the specified alias.
 ArtifactDescriptorResult ArtifactDescriptorResult.addRelocation(Artifact artifact)
          Records the specified relocation hop while location the artifact descriptor.
 ArtifactResult ArtifactResult.setArtifact(Artifact artifact)
          Sets the resolved artifact.
 VersionRangeRequest VersionRangeRequest.setArtifact(Artifact artifact)
          Sets the artifact whose version range shall be resolved.
 ArtifactDescriptorRequest ArtifactDescriptorRequest.setArtifact(Artifact artifact)
          Sets the artifact whose descriptor shall be read.
 VersionRequest VersionRequest.setArtifact(Artifact artifact)
          Sets the artifact whose (meta-)version shall be resolved.
 ArtifactRequest ArtifactRequest.setArtifact(Artifact artifact)
          Sets the artifact to resolve.
 ArtifactDescriptorResult ArtifactDescriptorResult.setArtifact(Artifact artifact)
          Sets the artifact whose descriptor was read.
 

Method parameters in org.sonatype.aether.resolution with type arguments of type Artifact
 ArtifactDescriptorResult ArtifactDescriptorResult.setAliases(Collection<Artifact> aliases)
          Sets the aliases of the artifact.
 ArtifactDescriptorResult ArtifactDescriptorResult.setRelocations(List<Artifact> relocations)
          Sets the relocations that were processed to read the artifact descriptor.
 

Constructors in org.sonatype.aether.resolution with parameters of type Artifact
ArtifactDescriptorRequest(Artifact artifact, List<RemoteRepository> repositories, String context)
          Creates a request with the specified properties.
ArtifactRequest(Artifact artifact, List<RemoteRepository> repositories, String context)
          Creates a request with the specified properties.
VersionRangeRequest(Artifact artifact, List<RemoteRepository> repositories, String context)
          Creates a request with the specified properties.
VersionRequest(Artifact artifact, List<RemoteRepository> repositories, String context)
          Creates a request with the specified properties.
 

Uses of Artifact in org.sonatype.aether.spi.connector
 

Methods in org.sonatype.aether.spi.connector that return Artifact
 Artifact ArtifactTransfer.getArtifact()
          Gets the artifact being transferred.
 

Methods in org.sonatype.aether.spi.connector with parameters of type Artifact
 ArtifactTransfer ArtifactTransfer.setArtifact(Artifact artifact)
          Sets the artifact to transfer.
 ArtifactUpload ArtifactUpload.setArtifact(Artifact artifact)
           
 ArtifactDownload ArtifactDownload.setArtifact(Artifact artifact)
           
 

Constructors in org.sonatype.aether.spi.connector with parameters of type Artifact
ArtifactDownload(Artifact artifact, String context, File file, String checksumPolicy)
          Creates a new download with the specified properties.
ArtifactUpload(Artifact artifact, File file)
          Creates a new upload with the specified properties.
 

Uses of Artifact in org.sonatype.aether.test.impl
 

Methods in org.sonatype.aether.test.impl that return types with arguments of type Artifact
 Set<Artifact> TestLocalRepositoryManager.getArtifactRegistration()
           
 

Methods in org.sonatype.aether.test.impl with parameters of type Artifact
 String TestLocalRepositoryManager.getPathForLocalArtifact(Artifact artifact)
           
 String TestLocalRepositoryManager.getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, String context)
           
 

Uses of Artifact in org.sonatype.aether.test.util
 

Methods in org.sonatype.aether.test.util that return types with arguments of type Artifact
 List<Artifact> ArtifactDescription.getRelocations()
           
 

Uses of Artifact in org.sonatype.aether.test.util.impl
 

Classes in org.sonatype.aether.test.util.impl that implement Artifact
 class StubArtifact
           
 

Methods in org.sonatype.aether.test.util.impl that return Artifact
 Artifact RepositoryTestContext.getArtifact()
           
 Artifact StubArtifact.setProperties(Map<String,String> properties)
           
 Artifact StubArtifact.setVersion(String version)
           
 

Methods in org.sonatype.aether.test.util.impl that return types with arguments of type Artifact
 Collection<Artifact> TestDependencyNode.getAliases()
           
 List<Artifact> TestDependencyNode.getRelocations()
           
 

Methods in org.sonatype.aether.test.util.impl with parameters of type Artifact
 void TestDependencyNode.setArtifact(Artifact artifact)
           
 void RepositoryTestContext.setArtifact(Artifact artifact)
           
 

Method parameters in org.sonatype.aether.test.util.impl with type arguments of type Artifact
 void TestDependencyNode.setAliases(Collection<Artifact> aliases)
          Sets the known aliases for this dependency's artifact.
 void TestDependencyNode.setRelocations(List<Artifact> relocations)
          Sets the sequence of relocations that was followed to resolve this dependency's artifact.
 

Uses of Artifact in org.sonatype.aether.transfer
 

Methods in org.sonatype.aether.transfer that return Artifact
 Artifact ArtifactTransferException.getArtifact()
           
 

Constructors in org.sonatype.aether.transfer with parameters of type Artifact
ArtifactNotFoundException(Artifact artifact, RemoteRepository repository)
           
ArtifactNotFoundException(Artifact artifact, RemoteRepository repository, String message)
           
ArtifactTransferException(Artifact artifact, RemoteRepository repository, String message)
           
ArtifactTransferException(Artifact artifact, RemoteRepository repository, String message, Throwable cause)
           
ArtifactTransferException(Artifact artifact, RemoteRepository repository, Throwable cause)
           
 

Uses of Artifact in org.sonatype.aether.util.artifact
 

Classes in org.sonatype.aether.util.artifact that implement Artifact
 class AbstractArtifact
          A skeleton class for artifacts that implements Object.equals(Object), Object.hashCode() and Object.toString().
 class DefaultArtifact
          A simple artifact.
 class SubArtifact
          An artifact whose identity is derived from another artifact.
 

Methods in org.sonatype.aether.util.artifact that return Artifact
 Artifact SubArtifact.setFile(File file)
           
 Artifact DefaultArtifact.setFile(File file)
           
 Artifact AbstractArtifact.setFile(File file)
           
 Artifact DefaultArtifact.setProperties(Map<String,String> properties)
           
 Artifact AbstractArtifact.setProperties(Map<String,String> properties)
           
 Artifact SubArtifact.setVersion(String version)
           
 Artifact DefaultArtifact.setVersion(String version)
           
 Artifact AbstractArtifact.setVersion(String version)
           
 

Methods in org.sonatype.aether.util.artifact with parameters of type Artifact
static String ArtifacIdUtils.toBaseId(Artifact artifact)
          Creates an artifact identifier of the form <groupId>:<artifactId>:<extension>[:<classifier>]:<baseVersion>.
static String ArtifacIdUtils.toId(Artifact artifact)
          Creates an artifact identifier of the form <groupId>:<artifactId>:<extension>[:<classifier>]:<version>.
static String ArtifacIdUtils.toVersionlessId(Artifact artifact)
          Creates an artifact identifier of the form <groupId>:<artifactId>:<extension>[:<classifier>].
 

Constructors in org.sonatype.aether.util.artifact with parameters of type Artifact
SubArtifact(Artifact mainArtifact, String classifier, String extension)
          Creates a new sub artifact.
SubArtifact(Artifact mainArtifact, String classifier, String extension, File file)
          Creates a new sub artifact.
 

Uses of Artifact in org.sonatype.aether.util.graph
 

Methods in org.sonatype.aether.util.graph that return types with arguments of type Artifact
 Collection<Artifact> DefaultDependencyNode.getAliases()
           
 List<Artifact> PreorderNodeListGenerator.getArtifacts(boolean includeUnresolved)
          Gets the artifacts associated with the list of dependency nodes generated during the graph traversal.
 List<Artifact> DefaultDependencyNode.getRelocations()
           
 

Methods in org.sonatype.aether.util.graph with parameters of type Artifact
 void DefaultDependencyNode.setArtifact(Artifact artifact)
           
 

Method parameters in org.sonatype.aether.util.graph with type arguments of type Artifact
 void DefaultDependencyNode.setAliases(Collection<Artifact> aliases)
          Sets the known aliases for this dependency's artifact.
 void DefaultDependencyNode.setRelocations(List<Artifact> relocations)
          Sets the sequence of relocations that was followed to resolve this dependency's artifact.
 

Uses of Artifact in org.sonatype.aether.util.layout
 

Methods in org.sonatype.aether.util.layout with parameters of type Artifact
 URI RepositoryLayout.getPath(Artifact artifact)
          Gets the URI to the location within a remote repository where the specified artifact would be stored.
 URI MavenDefaultLayout.getPath(Artifact artifact)
           
 

Uses of Artifact in org.sonatype.aether.util.listener
 

Methods in org.sonatype.aether.util.listener that return Artifact
 Artifact DefaultRepositoryEvent.getArtifact()
           
 

Methods in org.sonatype.aether.util.listener with parameters of type Artifact
 DefaultRepositoryEvent DefaultRepositoryEvent.setArtifact(Artifact artifact)
          Sets the artifact involved in the event.
 

Uses of Artifact in org.sonatype.aether.util.repository
 

Methods in org.sonatype.aether.util.repository with parameters of type Artifact
 File ChainedWorkspaceReader.findArtifact(Artifact artifact)
           
 List<String> ChainedWorkspaceReader.findVersions(Artifact artifact)
           
 



Copyright © 2010-2011 Sonatype, Inc.. All Rights Reserved.