Class ArtifactResolverPostProcessorSupport
java.lang.Object
org.eclipse.aether.internal.impl.resolution.ArtifactResolverPostProcessorSupport
- All Implemented Interfaces:
org.eclipse.aether.spi.resolution.ArtifactResolverPostProcessor
- Direct Known Subclasses:
TrustedChecksumsArtifactResolverPostProcessor
public abstract class ArtifactResolverPostProcessorSupport
extends Object
implements org.eclipse.aether.spi.resolution.ArtifactResolverPostProcessor
Support class to implement
ArtifactResolverPostProcessor.- Since:
- 1.9.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected StringconfigPropKey(String name) To be used by underlying implementations to form configuration property keys properly scoped.protected abstract voiddoPostProcess(org.eclipse.aether.RepositorySystemSession session, List<org.eclipse.aether.resolution.ArtifactResult> artifactResults) protected booleanisEnabled(org.eclipse.aether.RepositorySystemSession session) Returnstrueif session configuration marks this instance as enabled.voidpostProcess(org.eclipse.aether.RepositorySystemSession session, List<org.eclipse.aether.resolution.ArtifactResult> artifactResults) This implementation will call into underlying code only if enabled.
-
Constructor Details
-
ArtifactResolverPostProcessorSupport
-
-
Method Details
-
postProcess
public void postProcess(org.eclipse.aether.RepositorySystemSession session, List<org.eclipse.aether.resolution.ArtifactResult> artifactResults) This implementation will call into underlying code only if enabled.- Specified by:
postProcessin interfaceorg.eclipse.aether.spi.resolution.ArtifactResolverPostProcessor
-
doPostProcess
protected abstract void doPostProcess(org.eclipse.aether.RepositorySystemSession session, List<org.eclipse.aether.resolution.ArtifactResult> artifactResults) -
configPropKey
To be used by underlying implementations to form configuration property keys properly scoped. -
isEnabled
Returnstrueif session configuration marks this instance as enabled.Default value is
false.
-