Uses of Class
org.eclipse.aether.RequestTrace
-
Packages that use RequestTrace Package Description org.eclipse.aether The primary API of theRepositorySystemand its functionality.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.connector.basic Support for downloads/uploads using remote repositories that have a URI-based content structure/layout.org.eclipse.aether.deployment The types supporting the publishing of artifacts to a remote repository.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.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.transfer A listener and various exception types dealing with the transfer of a resource between the local system and a remote repository. -
-
Uses of RequestTrace in org.eclipse.aether
Fields in org.eclipse.aether declared as RequestTrace Modifier and Type Field Description private RequestTraceRequestTrace. parent(package private) RequestTraceRepositoryEvent.Builder. traceprivate RequestTraceRepositoryEvent. traceMethods in org.eclipse.aether that return RequestTrace Modifier and Type Method Description RequestTraceRequestTrace. getParent()Gets the parent of this trace.RequestTraceRepositoryEvent. getTrace()Gets the trace information about the request during which the event occurred.RequestTraceRequestTrace. newChild(java.lang.Object data)Creates a new child of this trace.static RequestTraceRequestTrace. newChild(RequestTrace parent, java.lang.Object data)Creates a child of the specified request trace.Methods in org.eclipse.aether with parameters of type RequestTrace Modifier and Type Method Description static RequestTraceRequestTrace. newChild(RequestTrace parent, java.lang.Object data)Creates a child of the specified request trace.RepositoryEvent.BuilderRepositoryEvent.Builder. setTrace(RequestTrace trace)Sets the trace information about the request during which the event occurred.Constructors in org.eclipse.aether with parameters of type RequestTrace Constructor Description RequestTrace(RequestTrace parent, java.lang.Object data)Creates a new trace with the specified data and parent -
Uses of RequestTrace in org.eclipse.aether.collection
Fields in org.eclipse.aether.collection declared as RequestTrace Modifier and Type Field Description private RequestTraceCollectRequest. traceMethods in org.eclipse.aether.collection that return RequestTrace Modifier and Type Method Description RequestTraceCollectRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.Methods in org.eclipse.aether.collection with parameters of type RequestTrace Modifier and Type Method Description CollectRequestCollectRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued. -
Uses of RequestTrace in org.eclipse.aether.connector.basic
Methods in org.eclipse.aether.connector.basic with parameters of type RequestTrace Modifier and Type Method Description private TransferResourceBasicRepositoryConnector. newTransferResource(java.net.URI path, java.io.File file, RequestTrace trace) -
Uses of RequestTrace in org.eclipse.aether.deployment
Fields in org.eclipse.aether.deployment declared as RequestTrace Modifier and Type Field Description private RequestTraceDeployRequest. traceMethods in org.eclipse.aether.deployment that return RequestTrace Modifier and Type Method Description RequestTraceDeployRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.Methods in org.eclipse.aether.deployment with parameters of type RequestTrace Modifier and Type Method Description DeployRequestDeployRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued. -
Uses of RequestTrace in org.eclipse.aether.installation
Fields in org.eclipse.aether.installation declared as RequestTrace Modifier and Type Field Description private RequestTraceInstallRequest. traceMethods in org.eclipse.aether.installation that return RequestTrace Modifier and Type Method Description RequestTraceInstallRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.Methods in org.eclipse.aether.installation with parameters of type RequestTrace Modifier and Type Method Description InstallRequestInstallRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued. -
Uses of RequestTrace in org.eclipse.aether.internal.impl
Fields in org.eclipse.aether.internal.impl declared as RequestTrace Modifier and Type Field Description private RequestTraceArtifactRequestBuilder. trace(package private) RequestTraceDefaultArtifactResolver.ResolutionItem. traceprivate RequestTraceDefaultDeployer.EventCatapult. trace(package private) RequestTraceDefaultMetadataResolver.ResolveTask. traceMethods in org.eclipse.aether.internal.impl that return RequestTrace Modifier and Type Method Description RequestTraceDefaultDeployer.EventCatapult. getTrace()Methods in org.eclipse.aether.internal.impl with parameters of type RequestTrace Modifier and Type Method Description 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)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 voidDefaultInstaller. install(RepositorySystemSession session, RequestTrace trace, Metadata metadata)private voidDefaultMetadataResolver. metadataDownloaded(RepositorySystemSession session, RequestTrace trace, Metadata metadata, ArtifactRepository repository, java.io.File file, java.lang.Exception exception)private voidDefaultMetadataResolver. metadataDownloading(RepositorySystemSession session, RequestTrace trace, Metadata metadata, ArtifactRepository repository)private voidDefaultInstaller. metadataInstalled(RepositorySystemSession session, RequestTrace trace, Metadata metadata, java.io.File dstFile, java.lang.Exception exception)private voidDefaultInstaller. metadataInstalling(RepositorySystemSession session, RequestTrace trace, Metadata metadata, java.io.File dstFile)private voidDefaultMetadataResolver. metadataResolved(RepositorySystemSession session, RequestTrace trace, Metadata metadata, ArtifactRepository repository, java.lang.Exception exception)private voidDefaultMetadataResolver. metadataResolving(RepositorySystemSession session, RequestTrace trace, Metadata metadata, ArtifactRepository repository)Constructors in org.eclipse.aether.internal.impl with parameters of type RequestTrace Constructor Description ArtifactRequestBuilder(RequestTrace trace)EventCatapult(RepositorySystemSession session, RequestTrace trace, RemoteRepository repository, RepositoryEventDispatcher dispatcher)ResolutionItem(RequestTrace trace, Artifact artifact, java.util.concurrent.atomic.AtomicBoolean resolved, ArtifactResult result, LocalArtifactResult local, RemoteRepository repository)ResolveTask(RepositorySystemSession session, RequestTrace trace, MetadataResult result, java.io.File metadataFile, java.util.List<UpdateCheck<Metadata,MetadataTransferException>> checks, java.lang.String policy) -
Uses of RequestTrace in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as RequestTrace Modifier and Type Field Description (package private) RequestTraceDefaultDependencyCollector.Args. traceConstructors in org.eclipse.aether.internal.impl.collect with parameters of type RequestTrace Constructor Description Args(RepositorySystemSession session, RequestTrace trace, DataPool pool, NodeStack nodes, DefaultDependencyCollectionContext collectionContext, DefaultVersionFilterContext versionContext, CollectRequest request) -
Uses of RequestTrace in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as RequestTrace Modifier and Type Field Description private RequestTraceArtifactDescriptorRequest. traceprivate RequestTraceArtifactRequest. traceprivate RequestTraceDependencyRequest. traceprivate RequestTraceMetadataRequest. traceprivate RequestTraceVersionRangeRequest. traceprivate RequestTraceVersionRequest. traceMethods in org.eclipse.aether.resolution that return RequestTrace Modifier and Type Method Description RequestTraceArtifactDescriptorRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.RequestTraceArtifactRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.RequestTraceDependencyRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.RequestTraceMetadataRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.RequestTraceVersionRangeRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.RequestTraceVersionRequest. getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.Methods in org.eclipse.aether.resolution with parameters of type RequestTrace Modifier and Type Method Description ArtifactDescriptorRequestArtifactDescriptorRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued.ArtifactRequestArtifactRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued.DependencyRequestDependencyRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued.MetadataRequestMetadataRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued.VersionRangeRequestVersionRangeRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued.VersionRequestVersionRequest. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this request is issued. -
Uses of RequestTrace in org.eclipse.aether.spi.connector
Fields in org.eclipse.aether.spi.connector declared as RequestTrace Modifier and Type Field Description private RequestTraceTransfer. traceMethods in org.eclipse.aether.spi.connector that return RequestTrace Modifier and Type Method Description RequestTraceTransfer. getTrace()Gets the trace information that describes the higher level request/operation in which this transfer is issued.Methods in org.eclipse.aether.spi.connector with parameters of type RequestTrace Modifier and Type Method Description ArtifactDownloadArtifactDownload. setTrace(RequestTrace trace)ArtifactUploadArtifactUpload. setTrace(RequestTrace trace)MetadataDownloadMetadataDownload. setTrace(RequestTrace trace)MetadataUploadMetadataUpload. setTrace(RequestTrace trace)(package private) TransferTransfer. setTrace(RequestTrace trace)Sets the trace information that describes the higher level request/operation in which this transfer is issued. -
Uses of RequestTrace in org.eclipse.aether.transfer
Fields in org.eclipse.aether.transfer declared as RequestTrace Modifier and Type Field Description private RequestTraceTransferResource. traceMethods in org.eclipse.aether.transfer that return RequestTrace Modifier and Type Method Description RequestTraceTransferResource. getTrace()Gets the trace information that describes the higher level request/operation during which this resource is transferred.Constructors in org.eclipse.aether.transfer with parameters of type RequestTrace Constructor Description TransferResource(java.lang.String repositoryUrl, java.lang.String resourceName, java.io.File file, RequestTrace trace)Deprecated.TransferResource(java.lang.String repositoryId, java.lang.String repositoryUrl, java.lang.String resourceName, java.io.File file, RequestTrace trace)Creates a new transfer resource with the specified properties.
-