Package org.eclipse.aether.collection
Interface DependencyGraphTransformationContext
-
public interface DependencyGraphTransformationContext
A context used during dependency collection to exchange information within a chain of dependency graph transformers.- See Also:
DependencyGraphTransformer
- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
get(Object key)
Gets a keyed value from the context.RepositorySystemSession
getSession()
Gets the repository system session during which the graph transformation happens.Object
put(Object key, Object value)
Puts a keyed value into the context.
-
-
-
Method Detail
-
getSession
RepositorySystemSession getSession()
Gets the repository system session during which the graph transformation happens.- Returns:
- The repository system session, never
null
.
-
get
Object get(Object key)
Gets a keyed value from the context.- Parameters:
key
- The key used to query the value, must not benull
.- Returns:
- The queried value or
null
if none.
-
-