Interface ArtifactTransformationManager
-
- All Known Implementing Classes:
DefaultArtifactTransformationManager
public interface ArtifactTransformationManagerManages multiple ArtifactTransformation instances and applies them in succession.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringROLE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtransformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository)Take in a artifact and return the transformed artifact for distributing toa remote repository.voidtransformForInstall(Artifact artifact, ArtifactRepository localRepository)Take in a artifact and return the transformed artifact for locating in the local repository.voidtransformForResolve(Artifact artifact, java.util.List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository)Take in a artifact and return the transformed artifact for locating in the remote repository.
-
-
-
Method Detail
-
transformForResolve
void transformForResolve(Artifact artifact, java.util.List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository) throws ArtifactResolutionException, ArtifactNotFoundException
Take in a artifact and return the transformed artifact for locating in the remote repository. If no transformation has occured the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.remoteRepositories- the repositories to checklocalRepository- the local repository- Throws:
ArtifactResolutionExceptionArtifactNotFoundException
-
transformForInstall
void transformForInstall(Artifact artifact, ArtifactRepository localRepository) throws ArtifactInstallationException
Take in a artifact and return the transformed artifact for locating in the local repository. If no transformation has occured the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.localRepository- the local repository it will be stored in- Throws:
ArtifactInstallationException
-
transformForDeployment
void transformForDeployment(Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException
Take in a artifact and return the transformed artifact for distributing toa remote repository. If no transformation has occured the original artifact is returned.- Parameters:
artifact- Artifact to be transformed.remoteRepository- the repository to deploy tolocalRepository- the local repository the metadata is stored in- Throws:
ArtifactDeploymentException
-
-