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:
- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
- 
Method SummaryModifier and TypeMethodDescriptionGets a keyed value from the context.Gets the repository system session during which the graph transformation happens.Puts a keyed value into the context.
- 
Method Details- 
getSessionGets the repository system session during which the graph transformation happens.- Returns:
- The repository system session, never null.
 
- 
getGets a keyed value from the context.- Parameters:
- key- The key used to query the value, must not be- null.
- Returns:
- The queried value or nullif none.
 
- 
putPuts a keyed value into the context.- Parameters:
- key- The key used to store the value, must not be- null.
- value- The value to store, may be- nullto remove the mapping.
- Returns:
- The previous value associated with the key or nullif none.
 
 
-