Interface RepositorySystemSession
- All Known Subinterfaces:
- RepositorySystemSession.CloseableSession
- All Known Implementing Classes:
- AbstractForwardingRepositorySystemSession,- DefaultRepositorySystemSession
DefaultRepositorySystemSession and its mutators to derive a custom session.- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceImmutable session that is closeable, should be handled as a resource.static interfaceBuilder for buildingRepositorySystemSession.CloseableSessioninstances.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanaddOnSessionEndedHandler(Runnable handler) Registers a handler to execute when this session closed.Gets the policy which controls how errors related to reading artifact descriptors should be handled.Gets the registry of artifact types recognized by this session, for instance when processing artifact descriptors.Gets the global artifact update policy.Gets the authentication selector to use for repositories discovered in artifact descriptors.getCache()Gets the cache the repository system may use to save data for future reuse during the session.Gets the global checksum policy.Gets the configuration properties used to tweak internal aspects of the repository system (e.g.getData()Gets the custom data associated with this session.Gets the dependency graph transformer to use for building dependency graphs.Gets the dependency manager to use for building dependency graphs.Gets the dependency selector to use for building dependency graphs.Gets the dependency traverser to use for building dependency graphs.Gets the local repository used during this session.Gets the local repository manager used during this session.Gets the global metadata update policy.Gets the mirror selector to use for repositories discovered in artifact descriptors.Gets the proxy selector to use for repositories discovered in artifact descriptors.Gets the listener being notified of actions in the repository system.Gets the policy which controls whether resolutions errors from remote repositories should be cached.Returns the scope manager to be used in this session, may benullif not set.Returns the system dependency scope.Gets the system properties to use, e.g.Gets the listener being notified of uploads/downloads by the repository system.Gets the global update policy, ornullif not set.Gets the user properties to use, e.g.Gets the version filter to use for building dependency graphs.Gets the workspace reader used during this session.booleanIndicates whether repositories declared in artifact descriptors should be ignored during transitive dependency collection.booleanIndicates whether the repository system operates in offline mode and avoids/refuses any access to remote repositories.
- 
Method Details- 
isOfflineboolean isOffline()Indicates whether the repository system operates in offline mode and avoids/refuses any access to remote repositories.- Returns:
- trueif the repository system is in offline mode,- falseotherwise.
 
- 
isIgnoreArtifactDescriptorRepositoriesboolean isIgnoreArtifactDescriptorRepositories()Indicates whether repositories declared in artifact descriptors should be ignored during transitive dependency collection. If enabled, only the repositories originally provided with the collect request will be considered.- Returns:
- trueif additional repositories from artifact descriptors are ignored,- falseto merge those with the originally specified repositories.
 
- 
getResolutionErrorPolicyGets the policy which controls whether resolutions errors from remote repositories should be cached.- Returns:
- The resolution error policy for this session or nullif resolution errors should generally not be cached.
 
- 
getArtifactDescriptorPolicyGets the policy which controls how errors related to reading artifact descriptors should be handled.- Returns:
- The descriptor error policy for this session or nullif descriptor errors should generally not be tolerated.
 
- 
getChecksumPolicyGets the global checksum policy. If set, the global checksum policy overrides the checksum policies of the remote repositories being used for resolution.- Returns:
- The global checksum policy or null/empty if not set and the per-repository policies apply.
- See Also:
 
- 
getUpdatePolicyGets the global update policy, ornullif not set.This method is meant for code that does not want to distinguish between artifact and metadata policies. Note: applications should either use get/set updatePolicy (this method and DefaultRepositorySystemSession.setUpdatePolicy(String)) or also distinguish between artifact and metadata update policies (and use other methods), but should not mix the two!- See Also:
 
- 
getArtifactUpdatePolicyGets the global artifact update policy. If set, the global update policy overrides the update policies of the remote repositories being used for resolution.- Returns:
- The global update policy or null/empty if not set and the per-repository policies apply.
- Since:
- 2.0.0
- See Also:
 
- 
getMetadataUpdatePolicyGets the global metadata update policy. If set, the global update policy overrides the update policies of the remote repositories being used for resolution.- Returns:
- The global update policy or null/empty if not set and the per-repository policies apply.
- Since:
- 2.0.0
- See Also:
 
- 
getLocalRepositoryGets the local repository used during this session. This is a convenience method forLocalRepositoryManager.getRepository().- Returns:
- The local repository being during this session, never null.
 
- 
getLocalRepositoryManagerGets the local repository manager used during this session.- Returns:
- The local repository manager used during this session, never null.
 
- 
getWorkspaceReaderGets the workspace reader used during this session. If set, the workspace reader will usually be consulted first to resolve artifacts.- Returns:
- The workspace reader for this session or nullif none.
 
- 
getRepositoryListenerGets the listener being notified of actions in the repository system.- Returns:
- The repository listener or nullif none.
 
- 
getTransferListenerGets the listener being notified of uploads/downloads by the repository system.- Returns:
- The transfer listener or nullif none.
 
- 
getSystemPropertiesGets the system properties to use, e.g. for processing of artifact descriptors. System properties are usually collected from the runtime environment likeSystem.getProperties()and environment variables.- Returns:
- The (read-only) system properties, never null.
 
- 
getUserPropertiesGets the user properties to use, e.g. for processing of artifact descriptors. User properties are similar to system properties but are set on the discretion of the user and hence are considered of higher priority than system properties.- Returns:
- The (read-only) user properties, never null.
 
- 
getConfigPropertiesGets the configuration properties used to tweak internal aspects of the repository system (e.g. thread pooling, connector-specific behavior, etc.)- Returns:
- The (read-only) configuration properties, never null.
- See Also:
 
- 
getMirrorSelectorGets the mirror selector to use for repositories discovered in artifact descriptors. Note that this selector is not used for remote repositories which are passed as request parameters to the repository system, those repositories are supposed to denote the effective repositories.- Returns:
- The mirror selector to use, never null.
- See Also:
 
- 
getProxySelectorGets the proxy selector to use for repositories discovered in artifact descriptors. Note that this selector is not used for remote repositories which are passed as request parameters to the repository system, those repositories are supposed to have their proxy (if any) already set.- Returns:
- The proxy selector to use, never null.
- See Also:
 
- 
getAuthenticationSelectorGets the authentication selector to use for repositories discovered in artifact descriptors. Note that this selector is not used for remote repositories which are passed as request parameters to the repository system, those repositories are supposed to have their authentication (if any) already set.- Returns:
- The authentication selector to use, never null.
- See Also:
 
- 
getArtifactTypeRegistryGets the registry of artifact types recognized by this session, for instance when processing artifact descriptors.- Returns:
- The artifact type registry, never null.
 
- 
getDependencyTraverserGets the dependency traverser to use for building dependency graphs.- Returns:
- The dependency traverser to use for building dependency graphs or nullif dependencies are unconditionally traversed.
 
- 
getDependencyManagerGets the dependency manager to use for building dependency graphs.- Returns:
- The dependency manager to use for building dependency graphs or nullif dependency management is not performed.
 
- 
getDependencySelectorGets the dependency selector to use for building dependency graphs.- Returns:
- The dependency selector to use for building dependency graphs or nullif dependencies are unconditionally included.
 
- 
getVersionFilterGets the version filter to use for building dependency graphs.- Returns:
- The version filter to use for building dependency graphs or nullif versions aren't filtered.
 
- 
getDependencyGraphTransformerGets the dependency graph transformer to use for building dependency graphs.- Returns:
- The dependency graph transformer to use for building dependency graphs or nullif none.
 
- 
getDataGets the custom data associated with this session.- Returns:
- The session data, never null.
 
- 
getCacheGets the cache the repository system may use to save data for future reuse during the session.- Returns:
- The repository cache or nullif none.
 
- 
getScopeManagerReturns the scope manager to be used in this session, may benullif not set.- Returns:
- The scope manager or nullif not set.
- Since:
- 2.0.0
 
- 
getSystemDependencyScopeReturns the system dependency scope.Shorthand method for ScopeManager.getSystemDependencyScope().If ScopeManageris set,getScopeManager()returns non-null value, the result ofScopeManager.getSystemDependencyScope()is returned (that may benull). If noScopeManagerif set, thenSystemDependencyScope.LEGACYinstance is returned, as lack of scope manager means that resolver operates in "legacy" mode (Maven3 compatible mode).- Returns:
- The system dependency scope or nullif no such scope.
- Since:
- 2.0.0
 
- 
addOnSessionEndedHandlerRegisters a handler to execute when this session closed.Note: Resolver 1.x sessions will not be able to register handlers. Migrate to Resolver 2.x way of handling sessions to make full use of new features. New features (like HTTP/2 transport) depend on this functionality. While they will function with Resolver 1.x sessions, they may produce resource leaks. - Parameters:
- handler- the handler, never- null.
- Returns:
- trueif handler successfully registered,- falseotherwise.
- Since:
- 2.0.0
 
 
-