Uses of Interface
org.eclipse.aether.artifact.Artifact
-
Packages that use Artifact Package Description org.eclipse.aether The primary API of theRepositorySystemand its functionality.org.eclipse.aether.artifact The definition of an artifact, that is the primary entity managed by the repository system.org.eclipse.aether.collection The types and extension points for collecting the transitive dependencies of an artifact and building a dependency graph.org.eclipse.aether.deployment The types supporting the publishing of artifacts to a remote repository.org.eclipse.aether.graph The representation of a dependency graph by means of connected dependency nodes.org.eclipse.aether.impl The provisional interfaces defining the various sub components that implement the repository system.org.eclipse.aether.installation The types supporting the publishing of artifacts to a local repository.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.internal.impl.collect Internal helper classes for dependency collector.org.eclipse.aether.internal.test.util Utility classes to ease unit testing.org.eclipse.aether.repository The definition of various kinds of repositories that host artifacts.org.eclipse.aether.resolution The types supporting the resolution of artifacts and metadata from repositories.org.eclipse.aether.spi.connector The contract to access artifacts/metadata in remote repositories.org.eclipse.aether.spi.connector.layout The contract to locate URI-based resources using custom repository layouts.org.eclipse.aether.transfer A listener and various exception types dealing with the transfer of a resource between the local system and a remote repository.org.eclipse.aether.transform org.eclipse.aether.util.artifact Utilities around artifacts and artifact type registries.org.eclipse.aether.util.filter Various dependency filters for selecting nodes in a dependency graph.org.eclipse.aether.util.graph.manager Various dependency managers for building a dependency graph.org.eclipse.aether.util.graph.selector Various dependency selectors for building a dependency graph.org.eclipse.aether.util.graph.transformer Various dependency graph transformers for post-processing a dependency graph.org.eclipse.aether.util.graph.visitor Various dependency visitors for inspecting a dependency graph.org.eclipse.aether.util.repository Ready-to-use selectors for authentication, proxies and mirrors and a few other repository related utilities. -
-
Uses of Artifact in org.eclipse.aether
Fields in org.eclipse.aether declared as Artifact Modifier and Type Field Description private ArtifactRepositoryEvent. artifact(package private) ArtifactRepositoryEvent.Builder. artifactMethods in org.eclipse.aether that return Artifact Modifier and Type Method Description ArtifactRepositoryEvent. getArtifact()Gets the artifact involved in the event (if any).Methods in org.eclipse.aether with parameters of type Artifact Modifier and Type Method Description java.util.Collection<FileTransformer>DefaultRepositorySystemSession.NullFileTransformerManager. getTransformersForArtifact(Artifact artifact)RepositoryEvent.BuilderRepositoryEvent.Builder. setArtifact(Artifact artifact)Sets the artifact involved in the event.Method parameters in org.eclipse.aether with type arguments of type Artifact Modifier and Type Method Description voidSyncContext. acquire(java.util.Collection<? extends Artifact> artifacts, java.util.Collection<? extends Metadata> metadatas)Acquires synchronized access to the specified artifacts and metadatas. -
Uses of Artifact in org.eclipse.aether.artifact
Classes in org.eclipse.aether.artifact that implement Artifact Modifier and Type Class Description classAbstractArtifactA skeleton class for artifacts.classDefaultArtifactA simple artifact.Methods in org.eclipse.aether.artifact that return Artifact Modifier and Type Method Description private ArtifactAbstractArtifact. newInstance(java.lang.String version, java.util.Map<java.lang.String,java.lang.String> properties, java.io.File file)Creates a new artifact with the specified coordinates, properties and file.ArtifactAbstractArtifact. setFile(java.io.File file)ArtifactArtifact. setFile(java.io.File file)Sets the file of the artifact.ArtifactAbstractArtifact. setProperties(java.util.Map<java.lang.String,java.lang.String> properties)ArtifactArtifact. setProperties(java.util.Map<java.lang.String,java.lang.String> properties)Sets the properties for the artifact.ArtifactAbstractArtifact. setVersion(java.lang.String version)ArtifactArtifact. setVersion(java.lang.String version)Sets the version of the artifact. -
Uses of Artifact in org.eclipse.aether.collection
Fields in org.eclipse.aether.collection declared as Artifact Modifier and Type Field Description private ArtifactCollectRequest. rootArtifactMethods in org.eclipse.aether.collection that return Artifact Modifier and Type Method Description ArtifactDependencyCollectionContext. getArtifact()Gets the artifact whose children are to be processed next during dependency collection.ArtifactCollectRequest. getRootArtifact()Gets the root artifact for the dependency graph.Methods in org.eclipse.aether.collection with parameters of type Artifact Modifier and Type Method Description CollectRequestCollectRequest. setRootArtifact(Artifact rootArtifact)Sets the root artifact for the dependency graph. -
Uses of Artifact in org.eclipse.aether.deployment
Fields in org.eclipse.aether.deployment with type parameters of type Artifact Modifier and Type Field Description private java.util.Collection<Artifact>DeployRequest. artifactsprivate java.util.Collection<Artifact>DeployResult. artifactsMethods in org.eclipse.aether.deployment that return types with arguments of type Artifact Modifier and Type Method Description java.util.Collection<Artifact>DeployRequest. getArtifacts()Gets the artifact to deploy.java.util.Collection<Artifact>DeployResult. getArtifacts()Gets the artifacts that got deployed.Methods in org.eclipse.aether.deployment with parameters of type Artifact Modifier and Type Method Description DeployRequestDeployRequest. addArtifact(Artifact artifact)Adds the specified artifacts for deployment.DeployResultDeployResult. addArtifact(Artifact artifact)Adds the specified artifacts to the result.Method parameters in org.eclipse.aether.deployment with type arguments of type Artifact Modifier and Type Method Description DeployRequestDeployRequest. setArtifacts(java.util.Collection<Artifact> artifacts)Sets the artifacts to deploy.DeployResultDeployResult. setArtifacts(java.util.Collection<Artifact> artifacts)Sets the artifacts that got deployed. -
Uses of Artifact in org.eclipse.aether.graph
Fields in org.eclipse.aether.graph declared as Artifact Modifier and Type Field Description private ArtifactDefaultDependencyNode. artifactprivate ArtifactDependency. artifactFields in org.eclipse.aether.graph with type parameters of type Artifact Modifier and Type Field Description private java.util.Collection<? extends Artifact>DefaultDependencyNode. aliasesprivate java.util.List<? extends Artifact>DefaultDependencyNode. relocationsMethods in org.eclipse.aether.graph that return Artifact Modifier and Type Method Description ArtifactDefaultDependencyNode. getArtifact()ArtifactDependency. getArtifact()Gets the artifact being depended on.ArtifactDependencyNode. getArtifact()Gets the artifact associated with this node.Methods in org.eclipse.aether.graph that return types with arguments of type Artifact Modifier and Type Method Description java.util.Collection<? extends Artifact>DefaultDependencyNode. getAliases()java.util.Collection<? extends Artifact>DependencyNode. getAliases()Gets the known aliases for this dependency's artifact.java.util.List<? extends Artifact>DefaultDependencyNode. getRelocations()java.util.List<? extends Artifact>DependencyNode. getRelocations()Gets the sequence of relocations that was followed to resolve the artifact referenced by the dependency.Methods in org.eclipse.aether.graph with parameters of type Artifact Modifier and Type Method Description voidDefaultDependencyNode. setArtifact(Artifact artifact)DependencyDependency. setArtifact(Artifact artifact)Sets the artifact being depended on.voidDependencyNode. setArtifact(Artifact artifact)Updates the artifact of the dependency after resolution.Method parameters in org.eclipse.aether.graph with type arguments of type Artifact Modifier and Type Method Description voidDefaultDependencyNode. setAliases(java.util.Collection<? extends Artifact> aliases)Sets the known aliases for this dependency's artifact.voidDefaultDependencyNode. setRelocations(java.util.List<? extends Artifact> relocations)Sets the sequence of relocations that was followed to resolve this dependency's artifact.Constructors in org.eclipse.aether.graph with parameters of type Artifact Constructor Description DefaultDependencyNode(Artifact artifact)Creates a new root node with the specified artifact as its label.Dependency(Artifact artifact, java.lang.String scope)Creates a mandatory dependency on the specified artifact with the given scope.Dependency(Artifact artifact, java.lang.String scope, java.lang.Boolean optional)Creates a dependency on the specified artifact with the given scope.Dependency(Artifact artifact, java.lang.String scope, java.lang.Boolean optional, java.util.Collection<Exclusion> exclusions)Creates a dependency on the specified artifact with the given scope and exclusions.Dependency(Artifact artifact, java.lang.String scope, java.util.Set<Exclusion> exclusions, java.lang.Boolean optional) -
Uses of Artifact in org.eclipse.aether.impl
Methods in org.eclipse.aether.impl that return Artifact Modifier and Type Method Description ArtifactMetadataGenerator. transformArtifact(Artifact artifact)Enables the metadata generator to transform the specified artifact.Methods in org.eclipse.aether.impl with parameters of type Artifact Modifier and Type Method Description ArtifactMetadataGenerator. transformArtifact(Artifact artifact)Enables the metadata generator to transform the specified artifact.Method parameters in org.eclipse.aether.impl with type arguments of type Artifact Modifier and Type Method Description voidUpdateCheckManager. checkArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)Checks whether an artifact has to be updated from a remote repository.java.util.Collection<? extends Metadata>MetadataGenerator. finish(java.util.Collection<? extends Artifact> artifacts)Allows for metadata generation based on the transformed artifacts.java.util.Collection<? extends Metadata>MetadataGenerator. prepare(java.util.Collection<? extends Artifact> artifacts)Prepares the generator to transform artifacts.voidUpdateCheckManager. touchArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)Updates the timestamp for the artifact contained in the update check. -
Uses of Artifact in org.eclipse.aether.installation
Fields in org.eclipse.aether.installation with type parameters of type Artifact Modifier and Type Field Description private java.util.Collection<Artifact>InstallRequest. artifactsprivate java.util.Collection<Artifact>InstallResult. artifactsMethods in org.eclipse.aether.installation that return types with arguments of type Artifact Modifier and Type Method Description java.util.Collection<Artifact>InstallRequest. getArtifacts()Gets the artifact to install.java.util.Collection<Artifact>InstallResult. getArtifacts()Gets the artifacts that got installed.Methods in org.eclipse.aether.installation with parameters of type Artifact Modifier and Type Method Description InstallRequestInstallRequest. addArtifact(Artifact artifact)Adds the specified artifacts for installation.InstallResultInstallResult. addArtifact(Artifact artifact)Adds the specified artifacts to the result.Method parameters in org.eclipse.aether.installation with type arguments of type Artifact Modifier and Type Method Description InstallRequestInstallRequest. setArtifacts(java.util.Collection<Artifact> artifacts)Sets the artifacts to install.InstallResultInstallResult. setArtifacts(java.util.Collection<Artifact> artifacts)Sets the artifacts that got installed. -
Uses of Artifact in org.eclipse.aether.internal.impl
Fields in org.eclipse.aether.internal.impl declared as Artifact Modifier and Type Field Description (package private) ArtifactDefaultArtifactResolver.ResolutionItem. artifactFields in org.eclipse.aether.internal.impl with type parameters of type Artifact Modifier and Type Field Description (package private) UpdateCheck<Artifact,ArtifactTransferException>DefaultArtifactResolver.ResolutionItem. updateCheckMethods in org.eclipse.aether.internal.impl with parameters of type Artifact Modifier and Type Method Description private voidEnhancedLocalRepositoryManager. addArtifact(Artifact artifact, java.util.Collection<java.lang.String> repositories, boolean local)voidDefaultDeployer.EventCatapult. artifactDeployed(Artifact artifact, java.io.File file, ArtifactTransferException exception)voidDefaultDeployer.EventCatapult. artifactDeploying(Artifact artifact, java.io.File file)private voidDefaultArtifactResolver. artifactDownloaded(RepositorySystemSession session, RequestTrace trace, Artifact artifact, RemoteRepository repository, java.lang.Exception exception)private voidDefaultArtifactResolver. artifactDownloading(RepositorySystemSession session, RequestTrace trace, Artifact artifact, RemoteRepository repository)private voidDefaultInstaller. artifactInstalled(RepositorySystemSession session, RequestTrace trace, Artifact artifact, java.io.File dstFile, java.lang.Exception exception)private voidDefaultInstaller. artifactInstalling(RepositorySystemSession session, RequestTrace trace, Artifact artifact, java.io.File dstFile)private voidDefaultArtifactResolver. artifactResolved(RepositorySystemSession session, RequestTrace trace, Artifact artifact, ArtifactRepository repository, java.util.List<java.lang.Exception> exceptions)private voidDefaultArtifactResolver. artifactResolving(RepositorySystemSession session, RequestTrace trace, Artifact artifact)java.util.List<RepositoryLayout.Checksum>Maven2RepositoryLayoutFactory.Maven2RepositoryLayout. getChecksums(Artifact artifact, boolean upload, java.net.URI location)java.util.List<RepositoryLayout.Checksum>Maven2RepositoryLayoutFactory.Maven2RepositoryLayoutEx. getChecksums(Artifact artifact, boolean upload, java.net.URI location)private java.lang.StringDefaultUpdateCheckManager. getDataKey(Artifact artifact, java.io.File artifactFile, RemoteRepository repository)private java.io.FileDefaultArtifactResolver. getFile(RepositorySystemSession session, Artifact artifact, java.io.File file)java.net.URIMaven2RepositoryLayoutFactory.Maven2RepositoryLayout. getLocation(Artifact artifact, boolean upload)(package private) java.lang.StringSimpleLocalRepositoryManager. getPathForArtifact(Artifact artifact, boolean local)java.lang.StringSimpleLocalRepositoryManager. getPathForLocalArtifact(Artifact artifact)java.lang.StringSimpleLocalRepositoryManager. getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, java.lang.String context)static intUtils. getPolicy(RepositorySystemSession session, Artifact artifact, RemoteRepository repository)private java.io.FileDefaultUpdateCheckManager. getTouchFile(Artifact artifact, java.io.File artifactFile)private java.lang.StringDefaultUpdateCheckManager. getTransferKey(RepositorySystemSession session, Artifact artifact, java.io.File artifactFile, RemoteRepository repository)private voidDefaultInstaller. install(RepositorySystemSession session, RequestTrace trace, Artifact artifact)private voidDefaultInstaller. install(RepositorySystemSession session, RequestTrace trace, Artifact artifact, LocalRepositoryManager lrm, java.io.File srcFile, FileTransformer fileTransformer)private ArtifactTransferExceptionDefaultUpdateCheckManager. newException(java.lang.String error, Artifact artifact, RemoteRepository repository)Method parameters in org.eclipse.aether.internal.impl with type arguments of type Artifact Modifier and Type Method Description voidDefaultSyncContextFactory.DefaultSyncContext. acquire(java.util.Collection<? extends Artifact> artifact, java.util.Collection<? extends Metadata> metadata)voidDefaultUpdateCheckManager. checkArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)voidDefaultUpdateCheckManager. touchArtifact(RepositorySystemSession session, UpdateCheck<Artifact,ArtifactTransferException> check)Constructors in org.eclipse.aether.internal.impl with parameters of type Artifact Constructor Description ResolutionItem(RequestTrace trace, Artifact artifact, java.util.concurrent.atomic.AtomicBoolean resolved, ArtifactResult result, LocalArtifactResult local, RemoteRepository repository) -
Uses of Artifact in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as Artifact Modifier and Type Field Description private ArtifactDataPool.ConstraintKey. artifact(package private) ArtifactDataPool.GoodDescriptor. artifactprivate ArtifactDataPool.GraphKey. artifactprivate ArtifactDefaultDependencyCollectionContext. artifactFields in org.eclipse.aether.internal.impl.collect with type parameters of type Artifact Modifier and Type Field Description (package private) java.util.Collection<Artifact>DataPool.GoodDescriptor. aliasesprivate ObjectPool<Artifact>DataPool. artifacts(package private) java.util.List<Artifact>DataPool.GoodDescriptor. relocationsMethods in org.eclipse.aether.internal.impl.collect that return Artifact Modifier and Type Method Description ArtifactDefaultDependencyCollectionContext. getArtifact()ArtifactDataPool. intern(Artifact artifact)Methods in org.eclipse.aether.internal.impl.collect with parameters of type Artifact Modifier and Type Method Description intNodeStack. find(Artifact artifact)private static java.lang.StringDefaultDependencyCollector. getId(Artifact a)ArtifactDataPool. intern(Artifact artifact)private static booleanDefaultDependencyCollector. isLackingDescriptor(Artifact artifact)java.lang.ObjectDataPool. toKey(Artifact artifact, java.util.List<RemoteRepository> repositories, DependencySelector selector, DependencyManager manager, DependencyTraverser traverser, VersionFilter filter)Method parameters in org.eclipse.aether.internal.impl.collect with type arguments of type Artifact Modifier and Type Method Description private static DefaultDependencyNodeDefaultDependencyCollector. createDependencyNode(java.util.List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, java.util.Collection<Artifact> aliases, java.util.List<RemoteRepository> repos, java.lang.String requestContext)private static DefaultDependencyNodeDefaultDependencyCollector. createDependencyNode(java.util.List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, java.util.Collection<Artifact> aliases, java.util.List<RemoteRepository> repos, java.lang.String requestContext)private static DefaultDependencyNodeDefaultDependencyCollector. createDependencyNode(java.util.List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, ArtifactDescriptorResult descriptorResult, DependencyNode cycleNode)Constructors in org.eclipse.aether.internal.impl.collect with parameters of type Artifact Constructor Description DefaultDependencyCollectionContext(RepositorySystemSession session, Artifact artifact, Dependency dependency, java.util.List<Dependency> managedDependencies)GraphKey(Artifact artifact, java.util.List<RemoteRepository> repositories, DependencySelector selector, DependencyManager manager, DependencyTraverser traverser, VersionFilter filter) -
Uses of Artifact in org.eclipse.aether.internal.test.util
Fields in org.eclipse.aether.internal.test.util declared as Artifact Modifier and Type Field Description private ArtifactTestDependencyCollectionContext. artifactprivate ArtifactArtifactDescription. relocationFields in org.eclipse.aether.internal.test.util with type parameters of type Artifact Modifier and Type Field Description private java.util.Set<Artifact>TestLocalRepositoryManager. artifactRegistrationsprivate java.util.List<Artifact>NodeBuilder. relocationsprivate java.util.Set<Artifact>TestLocalRepositoryManager. unavailableArtifactsMethods in org.eclipse.aether.internal.test.util that return Artifact Modifier and Type Method Description ArtifactTestDependencyCollectionContext. getArtifact()ArtifactArtifactDescription. getRelocation()private ArtifactIniArtifactDataReader. relocation(java.util.List<java.lang.String> list)Methods in org.eclipse.aether.internal.test.util that return types with arguments of type Artifact Modifier and Type Method Description java.util.Set<Artifact>TestLocalRepositoryManager. getArtifactRegistration()Methods in org.eclipse.aether.internal.test.util with parameters of type Artifact Modifier and Type Method Description java.lang.StringTestLocalRepositoryManager. getPathForLocalArtifact(Artifact artifact)java.lang.StringTestLocalRepositoryManager. getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, java.lang.String context)static DependencyCollectionContextTestUtils. newCollectionContext(RepositorySystemSession session, Artifact artifact, Dependency dependency, java.util.List<Dependency> managedDependencies)Creates a new dependency collection context.voidTestLocalRepositoryManager. setArtifactAvailability(Artifact artifact, boolean available)Constructors in org.eclipse.aether.internal.test.util with parameters of type Artifact Constructor Description ArtifactDescription(Artifact relocation, java.util.List<Dependency> dependencies, java.util.List<Dependency> managedDependencies, java.util.List<RemoteRepository> repositories)TestDependencyCollectionContext(RepositorySystemSession session, Artifact artifact, Dependency dependency, java.util.List<Dependency> managedDependencies) -
Uses of Artifact in org.eclipse.aether.repository
Fields in org.eclipse.aether.repository declared as Artifact Modifier and Type Field Description private ArtifactLocalArtifactRegistration. artifactprivate ArtifactLocalArtifactRequest. artifactMethods in org.eclipse.aether.repository that return Artifact Modifier and Type Method Description ArtifactLocalArtifactRegistration. getArtifact()Gets the artifact to register.ArtifactLocalArtifactRequest. getArtifact()Gets the artifact to query for.Methods in org.eclipse.aether.repository with parameters of type Artifact Modifier and Type Method Description java.io.FileWorkspaceReader. findArtifact(Artifact artifact)Locates the specified artifact.java.util.List<java.lang.String>WorkspaceReader. findVersions(Artifact artifact)Determines all available versions of the specified artifact.java.lang.StringLocalRepositoryManager. getPathForLocalArtifact(Artifact artifact)Gets the relative path for a locally installed artifact.java.lang.StringLocalRepositoryManager. getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, java.lang.String context)Gets the relative path for an artifact cached from a remote repository.LocalArtifactRegistrationLocalArtifactRegistration. setArtifact(Artifact artifact)Sets the artifact to register.LocalArtifactRequestLocalArtifactRequest. setArtifact(Artifact artifact)Sets the artifact to query for.Constructors in org.eclipse.aether.repository with parameters of type Artifact Constructor Description LocalArtifactRegistration(Artifact artifact)Creates a registration request for the specified (locally installed) artifact.LocalArtifactRegistration(Artifact artifact, RemoteRepository repository, java.util.Collection<java.lang.String> contexts)Creates a registration request for the specified artifact.LocalArtifactRequest(Artifact artifact, java.util.List<RemoteRepository> repositories, java.lang.String context)Creates a query with the specified properties. -
Uses of Artifact in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as Artifact Modifier and Type Field Description private ArtifactArtifactDescriptorPolicyRequest. artifactprivate ArtifactArtifactDescriptorRequest. artifactprivate ArtifactArtifactDescriptorResult. artifactprivate ArtifactArtifactRequest. artifactprivate ArtifactArtifactResult. artifactprivate ArtifactVersionRangeRequest. artifactprivate ArtifactVersionRequest. artifactFields in org.eclipse.aether.resolution with type parameters of type Artifact Modifier and Type Field Description private java.util.Collection<Artifact>ArtifactDescriptorResult. aliasesprivate java.util.List<Artifact>ArtifactDescriptorResult. relocationsMethods in org.eclipse.aether.resolution that return Artifact Modifier and Type Method Description ArtifactArtifactDescriptorPolicyRequest. getArtifact()Gets the artifact for whose descriptor to determine the error policy.ArtifactArtifactDescriptorRequest. getArtifact()Gets the artifact whose descriptor shall be read.ArtifactArtifactDescriptorResult. getArtifact()Gets the artifact whose descriptor was read.ArtifactArtifactRequest. getArtifact()Gets the artifact to resolve.ArtifactArtifactResult. getArtifact()Gets the resolved artifact (if any).ArtifactVersionRangeRequest. getArtifact()Gets the artifact whose version range shall be resolved.ArtifactVersionRequest. getArtifact()Gets the artifact whose (meta-)version shall be resolved.Methods in org.eclipse.aether.resolution that return types with arguments of type Artifact Modifier and Type Method Description java.util.Collection<Artifact>ArtifactDescriptorResult. getAliases()Gets the known aliases for this artifact.java.util.List<Artifact>ArtifactDescriptorResult. getRelocations()Gets the relocations that were processed to read the artifact descriptor.Methods in org.eclipse.aether.resolution with parameters of type Artifact Modifier and Type Method Description ArtifactDescriptorResultArtifactDescriptorResult. addAlias(Artifact alias)Records the specified alias.ArtifactDescriptorResultArtifactDescriptorResult. addRelocation(Artifact artifact)Records the specified relocation hop while locating the artifact descriptor.ArtifactDescriptorPolicyRequestArtifactDescriptorPolicyRequest. setArtifact(Artifact artifact)Sets the artifact for whose descriptor to determine the error policy.ArtifactDescriptorRequestArtifactDescriptorRequest. setArtifact(Artifact artifact)Sets the artifact whose descriptor shall be read.ArtifactDescriptorResultArtifactDescriptorResult. setArtifact(Artifact artifact)Sets the artifact whose descriptor was read.ArtifactRequestArtifactRequest. setArtifact(Artifact artifact)Sets the artifact to resolve.ArtifactResultArtifactResult. setArtifact(Artifact artifact)Sets the resolved artifact.VersionRangeRequestVersionRangeRequest. setArtifact(Artifact artifact)Sets the artifact whose version range shall be resolved.VersionRequestVersionRequest. setArtifact(Artifact artifact)Sets the artifact whose (meta-)version shall be resolved.Method parameters in org.eclipse.aether.resolution with type arguments of type Artifact Modifier and Type Method Description intResolutionErrorPolicy. getArtifactPolicy(RepositorySystemSession session, ResolutionErrorPolicyRequest<Artifact> request)Gets the error policy for an artifact.ArtifactDescriptorResultArtifactDescriptorResult. setAliases(java.util.Collection<Artifact> aliases)Sets the aliases of the artifact.ArtifactDescriptorResultArtifactDescriptorResult. setRelocations(java.util.List<Artifact> relocations)Sets the relocations that were processed to read the artifact descriptor.Constructors in org.eclipse.aether.resolution with parameters of type Artifact Constructor Description ArtifactDescriptorPolicyRequest(Artifact artifact, java.lang.String context)Creates a request for the specified artifact.ArtifactDescriptorRequest(Artifact artifact, java.util.List<RemoteRepository> repositories, java.lang.String context)Creates a request with the specified properties.ArtifactRequest(Artifact artifact, java.util.List<RemoteRepository> repositories, java.lang.String context)Creates a request with the specified properties.VersionRangeRequest(Artifact artifact, java.util.List<RemoteRepository> repositories, java.lang.String context)Creates a request with the specified properties.VersionRequest(Artifact artifact, java.util.List<RemoteRepository> repositories, java.lang.String context)Creates a request with the specified properties. -
Uses of Artifact in org.eclipse.aether.spi.connector
Fields in org.eclipse.aether.spi.connector declared as Artifact Modifier and Type Field Description private ArtifactArtifactTransfer. artifactMethods in org.eclipse.aether.spi.connector that return Artifact Modifier and Type Method Description ArtifactArtifactTransfer. getArtifact()Gets the artifact being transferred.Methods in org.eclipse.aether.spi.connector with parameters of type Artifact Modifier and Type Method Description ArtifactDownloadArtifactDownload. setArtifact(Artifact artifact)ArtifactTransferArtifactTransfer. setArtifact(Artifact artifact)Sets the artifact to transfer.ArtifactUploadArtifactUpload. setArtifact(Artifact artifact)Constructors in org.eclipse.aether.spi.connector with parameters of type Artifact Constructor Description ArtifactDownload(Artifact artifact, java.lang.String context, java.io.File file, java.lang.String checksumPolicy)Creates a new download with the specified properties.ArtifactUpload(Artifact artifact, java.io.File file)Creates a new upload with the specified properties.ArtifactUpload(Artifact artifact, java.io.File file, FileTransformer fileTransformer)Creates a new upload with the specified properties. -
Uses of Artifact in org.eclipse.aether.spi.connector.layout
Methods in org.eclipse.aether.spi.connector.layout with parameters of type Artifact Modifier and Type Method Description java.util.List<RepositoryLayout.Checksum>RepositoryLayout. getChecksums(Artifact artifact, boolean upload, java.net.URI location)Gets the checksums files that a remote repository keeps to help detect data corruption during transfers of the specified artifact.java.net.URIRepositoryLayout. getLocation(Artifact artifact, boolean upload)Gets the location within a remote repository where the specified artifact resides. -
Uses of Artifact in org.eclipse.aether.transfer
Fields in org.eclipse.aether.transfer declared as Artifact Modifier and Type Field Description private ArtifactArtifactTransferException. artifactMethods in org.eclipse.aether.transfer that return Artifact Modifier and Type Method Description ArtifactArtifactTransferException. getArtifact()Gets the artifact that could not be transferred.Methods in org.eclipse.aether.transfer with parameters of type Artifact Modifier and Type Method Description private static java.lang.StringArtifactNotFoundException. getMessage(Artifact artifact, RemoteRepository repository)Constructors in org.eclipse.aether.transfer with parameters of type Artifact Constructor Description ArtifactNotFoundException(Artifact artifact, RemoteRepository repository)Creates a new exception with the specified artifact and repository.ArtifactNotFoundException(Artifact artifact, RemoteRepository repository, java.lang.String message)Creates a new exception with the specified artifact, repository and detail message.ArtifactNotFoundException(Artifact artifact, RemoteRepository repository, java.lang.String message, boolean fromCache)Creates a new exception with the specified artifact, repository and detail message.ArtifactNotFoundException(Artifact artifact, RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)Creates a new exception with the specified artifact, repository, detail message and cause.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message)Creates a new exception with the specified artifact, repository and detail message.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message, boolean fromCache)Creates a new exception with the specified artifact, repository and detail message.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)Creates a new exception with the specified artifact, repository, detail message and cause.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.Throwable cause)Creates a new exception with the specified artifact, repository and cause. -
Uses of Artifact in org.eclipse.aether.transform
Methods in org.eclipse.aether.transform that return Artifact Modifier and Type Method Description ArtifactFileTransformer. transformArtifact(Artifact artifact)Transform the target locationMethods in org.eclipse.aether.transform with parameters of type Artifact Modifier and Type Method Description java.util.Collection<FileTransformer>FileTransformerManager. getTransformersForArtifact(Artifact artifact)All transformers for this specific artifact.ArtifactFileTransformer. transformArtifact(Artifact artifact)Transform the target location -
Uses of Artifact in org.eclipse.aether.util.artifact
Classes in org.eclipse.aether.util.artifact that implement Artifact Modifier and Type Class Description classDelegatingArtifactAn artifact that delegates to another artifact instance.classSubArtifactAn artifact whose identity is derived from another artifact.Fields in org.eclipse.aether.util.artifact declared as Artifact Modifier and Type Field Description private ArtifactDelegatingArtifact. delegateprivate ArtifactSubArtifact. mainArtifactMethods in org.eclipse.aether.util.artifact that return Artifact Modifier and Type Method Description ArtifactDelegatingArtifact. setFile(java.io.File file)ArtifactSubArtifact. setFile(java.io.File file)ArtifactDelegatingArtifact. setProperties(java.util.Map<java.lang.String,java.lang.String> properties)ArtifactSubArtifact. setProperties(java.util.Map<java.lang.String,java.lang.String> properties)ArtifactDelegatingArtifact. setVersion(java.lang.String version)Methods in org.eclipse.aether.util.artifact with parameters of type Artifact Modifier and Type Method Description static booleanArtifactIdUtils. equalsBaseId(Artifact artifact1, Artifact artifact2)Determines whether two artifacts have the same base identifier.static booleanArtifactIdUtils. equalsId(Artifact artifact1, Artifact artifact2)Determines whether two artifacts have the same identifier.static booleanArtifactIdUtils. equalsVersionlessId(Artifact artifact1, Artifact artifact2)Determines whether two artifacts have the same versionless identifier.protected abstract DelegatingArtifactDelegatingArtifact. newInstance(Artifact delegate)Creates a new artifact instance that delegates to the specified artifact.static java.lang.StringArtifactIdUtils. toBaseId(Artifact artifact)Creates an artifact identifier of the form<groupId>:<artifactId>:<extension>[:<classifier>]:<baseVersion>.static java.lang.StringArtifactIdUtils. toId(Artifact artifact)Creates an artifact identifier of the form<groupId>:<artifactId>:<extension>[:<classifier>]:<version>.static java.lang.StringArtifactIdUtils. toVersionlessId(Artifact artifact)Creates an artifact identifier of the form<groupId>:<artifactId>:<extension>[:<classifier>].Constructors in org.eclipse.aether.util.artifact with parameters of type Artifact Constructor Description DelegatingArtifact(Artifact delegate)Creates a new artifact instance that delegates to the specified artifact.SubArtifact(Artifact mainArtifact, java.lang.String classifier, java.lang.String extension)Creates a new sub artifact.SubArtifact(Artifact mainArtifact, java.lang.String classifier, java.lang.String extension, java.io.File file)Creates a new sub artifact.SubArtifact(Artifact mainArtifact, java.lang.String classifier, java.lang.String extension, java.io.File file, java.util.Map<java.lang.String,java.lang.String> properties)SubArtifact(Artifact mainArtifact, java.lang.String classifier, java.lang.String extension, java.util.Map<java.lang.String,java.lang.String> properties)Creates a new sub artifact.SubArtifact(Artifact mainArtifact, java.lang.String classifier, java.lang.String extension, java.util.Map<java.lang.String,java.lang.String> properties, java.io.File file)Creates a new sub artifact. -
Uses of Artifact in org.eclipse.aether.util.filter
Methods in org.eclipse.aether.util.filter with parameters of type Artifact Modifier and Type Method Description protected booleanAbstractPatternDependencyFilter. accept(Artifact artifact)private booleanAbstractPatternDependencyFilter. accept(Artifact artifact, java.lang.String pattern)protected booleanPatternExclusionsDependencyFilter. accept(Artifact artifact) -
Uses of Artifact in org.eclipse.aether.util.graph.manager
Fields in org.eclipse.aether.util.graph.manager declared as Artifact Modifier and Type Field Description private ArtifactClassicDependencyManager.Key. artifactprivate ArtifactDefaultDependencyManager.Key. artifactprivate ArtifactTransitiveDependencyManager.Key. artifactMethods in org.eclipse.aether.util.graph.manager with parameters of type Artifact Modifier and Type Method Description private java.lang.ObjectClassicDependencyManager. getKey(Artifact a)private java.lang.ObjectDefaultDependencyManager. getKey(Artifact a)private java.lang.ObjectTransitiveDependencyManager. getKey(Artifact a)Constructors in org.eclipse.aether.util.graph.manager with parameters of type Artifact Constructor Description Key(Artifact artifact)Key(Artifact artifact)Key(Artifact artifact) -
Uses of Artifact in org.eclipse.aether.util.graph.selector
Methods in org.eclipse.aether.util.graph.selector with parameters of type Artifact Modifier and Type Method Description private booleanExclusionDependencySelector. matches(Exclusion exclusion, Artifact artifact) -
Uses of Artifact in org.eclipse.aether.util.graph.transformer
Fields in org.eclipse.aether.util.graph.transformer declared as Artifact Modifier and Type Field Description private ArtifactConflictMarker.Key. artifact(package private) ArtifactConflictResolver.ConflictItem. artifactMethods in org.eclipse.aether.util.graph.transformer with parameters of type Artifact Modifier and Type Method Description private static java.lang.ObjectConflictMarker. toKey(Artifact artifact)Constructors in org.eclipse.aether.util.graph.transformer with parameters of type Artifact Constructor Description Key(Artifact artifact) -
Uses of Artifact in org.eclipse.aether.util.graph.visitor
Methods in org.eclipse.aether.util.graph.visitor that return types with arguments of type Artifact Modifier and Type Method Description java.util.List<Artifact>AbstractDepthFirstNodeListGenerator. getArtifacts(boolean includeUnresolved)Gets the artifacts associated with the list of dependency nodes generated during the graph traversal. -
Uses of Artifact in org.eclipse.aether.util.repository
Methods in org.eclipse.aether.util.repository with parameters of type Artifact Modifier and Type Method Description java.io.FileChainedWorkspaceReader. findArtifact(Artifact artifact)java.util.List<java.lang.String>ChainedWorkspaceReader. findVersions(Artifact artifact)Method parameters in org.eclipse.aether.util.repository with type arguments of type Artifact Modifier and Type Method Description intSimpleResolutionErrorPolicy. getArtifactPolicy(RepositorySystemSession session, ResolutionErrorPolicyRequest<Artifact> request)
-