Uses of Interface
org.sonatype.aether.metadata.Metadata

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

Uses of Metadata in org.sonatype.aether
 

Methods in org.sonatype.aether that return Metadata
 Metadata RepositoryEvent.getMetadata()
          Gets the metadata involved in the event (if any).
 

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

Uses of Metadata in org.sonatype.aether.deployment
 

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

Methods in org.sonatype.aether.deployment with parameters of type Metadata
 DeployResult DeployResult.addMetadata(Metadata metadata)
          Adds the specified metadata to this result.
 DeployRequest DeployRequest.addMetadata(Metadata metadata)
          Adds the specified metadata for deployment.
 

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

Uses of Metadata in org.sonatype.aether.impl
 

Methods in org.sonatype.aether.impl that return types with arguments of type Metadata
 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.
 

Method parameters in org.sonatype.aether.impl with type arguments of type Metadata
 void UpdateCheckManager.checkMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
          Checks whether metadata has to be updated from a remote repository.
 void UpdateCheckManager.touchMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
          Updates the timestamp for the metadata contained in the update check.
 

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

Methods in org.sonatype.aether.impl.internal with parameters of type Metadata
 String SimpleLocalRepositoryManager.getPathForLocalMetadata(Metadata metadata)
           
 String SimpleLocalRepositoryManager.getPathForRemoteMetadata(Metadata metadata, RemoteRepository repository, String context)
           
 

Method parameters in org.sonatype.aether.impl.internal with type arguments of type Metadata
 void DefaultUpdateCheckManager.checkMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
           
 void DefaultUpdateCheckManager.touchMetadata(RepositorySystemSession session, UpdateCheck<Metadata,MetadataTransferException> check)
           
 

Uses of Metadata in org.sonatype.aether.installation
 

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

Methods in org.sonatype.aether.installation with parameters of type Metadata
 InstallRequest InstallRequest.addMetadata(Metadata metadata)
          Adds the specified metadata for installation.
 InstallResult InstallResult.addMetadata(Metadata metadata)
          Adds the specified metadata to this result.
 

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

Uses of Metadata in org.sonatype.aether.metadata
 

Subinterfaces of Metadata in org.sonatype.aether.metadata
 interface MergeableMetadata
          A piece of metadata that needs to be merged with any current metadata before installation/deployment.
 

Methods in org.sonatype.aether.metadata that return Metadata
 Metadata Metadata.setFile(File file)
          Sets the file of the metadata.
 

Uses of Metadata in org.sonatype.aether.repository
 

Methods in org.sonatype.aether.repository that return Metadata
 Metadata LocalMetadataRequest.getMetadata()
          Gets the metadata to query for.
 Metadata LocalMetadataRegistration.getMetadata()
          Gets the metadata to register.
 

Methods in org.sonatype.aether.repository with parameters of type Metadata
 String LocalRepositoryManager.getPathForLocalMetadata(Metadata metadata)
          Gets the relative path for locally installed metadata.
 String LocalRepositoryManager.getPathForRemoteMetadata(Metadata metadata, RemoteRepository repository, String context)
          Gets the relative path for metadata cached from a remote repository.
 LocalMetadataRequest LocalMetadataRequest.setMetadata(Metadata metadata)
          Sets the metadata to query for.
 LocalMetadataRegistration LocalMetadataRegistration.setMetadata(Metadata metadata)
          Sets the metadata to register.
 

Constructors in org.sonatype.aether.repository with parameters of type Metadata
LocalMetadataRegistration(Metadata metadata)
          Creates a registration request for the specified metadata accompanying a locally installed artifact.
LocalMetadataRegistration(Metadata metadata, RemoteRepository repository, Collection<String> contexts)
          Creates a registration request for the specified metadata.
LocalMetadataRequest(Metadata metadata, RemoteRepository repository, String context)
          Creates a query with the specified properties.
 

Uses of Metadata in org.sonatype.aether.resolution
 

Methods in org.sonatype.aether.resolution that return Metadata
 Metadata MetadataResult.getMetadata()
          Gets the resolved metadata (if any).
 Metadata MetadataRequest.getMetadata()
          Gets the metadata to resolve.
 

Methods in org.sonatype.aether.resolution with parameters of type Metadata
 MetadataResult MetadataResult.setMetadata(Metadata metadata)
          Sets the resolved metadata.
 MetadataRequest MetadataRequest.setMetadata(Metadata metadata)
          Sets the metadata to resolve.
 

Constructors in org.sonatype.aether.resolution with parameters of type Metadata
MetadataRequest(Metadata metadata)
          Creates a request to resolve the specified metadata from the local repository.
MetadataRequest(Metadata metadata, RemoteRepository repository, String context)
          Creates a request with the specified properties.
 

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

Methods in org.sonatype.aether.spi.connector that return Metadata
 Metadata MetadataTransfer.getMetadata()
          Gets the metadata being transferred.
 

Methods in org.sonatype.aether.spi.connector with parameters of type Metadata
 MetadataDownload MetadataDownload.setMetadata(Metadata metadata)
           
 MetadataTransfer MetadataTransfer.setMetadata(Metadata metadata)
          Sets the metadata to transfer.
 MetadataUpload MetadataUpload.setMetadata(Metadata metadata)
           
 

Constructors in org.sonatype.aether.spi.connector with parameters of type Metadata
MetadataDownload(Metadata metadata, String context, File file, String checksumPolicy)
          Creates a new download with the specified properties.
MetadataUpload(Metadata metadata, File file)
          Creates a new upload with the specified properties.
 

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

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

Methods in org.sonatype.aether.test.impl with parameters of type Metadata
 String TestLocalRepositoryManager.getPathForLocalMetadata(Metadata metadata)
           
 String TestLocalRepositoryManager.getPathForRemoteMetadata(Metadata metadata, RemoteRepository repository, String context)
           
 

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

Classes in org.sonatype.aether.test.util.impl that implement Metadata
 class StubMetadata
           
 

Methods in org.sonatype.aether.test.util.impl that return Metadata
 Metadata StubMetadata.setFile(File file)
           
 

Uses of Metadata in org.sonatype.aether.transfer
 

Methods in org.sonatype.aether.transfer that return Metadata
 Metadata MetadataTransferException.getMetadata()
           
 

Constructors in org.sonatype.aether.transfer with parameters of type Metadata
MetadataNotFoundException(Metadata metadata, LocalRepository repository)
           
MetadataNotFoundException(Metadata metadata, RemoteRepository repository)
           
MetadataNotFoundException(Metadata metadata, RemoteRepository repository, String message)
           
MetadataTransferException(Metadata metadata, RemoteRepository repository, String message)
           
MetadataTransferException(Metadata metadata, RemoteRepository repository, String message, Throwable cause)
           
MetadataTransferException(Metadata metadata, RemoteRepository repository, Throwable cause)
           
 

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

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

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

Methods in org.sonatype.aether.util.listener that return Metadata
 Metadata DefaultRepositoryEvent.getMetadata()
           
 

Methods in org.sonatype.aether.util.listener with parameters of type Metadata
 DefaultRepositoryEvent DefaultRepositoryEvent.setMetadata(Metadata metadata)
          Sets the metadata involved in the event.
 

Uses of Metadata in org.sonatype.aether.util.metadata
 

Classes in org.sonatype.aether.util.metadata that implement Metadata
 class DefaultMetadata
          A basic metadata instance.
 

Methods in org.sonatype.aether.util.metadata that return Metadata
 Metadata DefaultMetadata.setFile(File file)
           
 



Copyright © 2010-2013. All Rights Reserved.