Package org.shredzone.commons.view
Interface PathContext
-
- All Known Implementing Classes:
AbstractPathContext
@ParametersAreNonnullByDefault public interface PathContext
Context that holds all data required for building a path.- Author:
- Richard "Shred" Körber
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetQualifier()Gets the qualifier to be used.SignaturegetSignature()Gets aSignaturefor thisPathContext.Map<String,Object>getVariables()Gets a map of variables to be used.
-
-
-
Method Detail
-
getSignature
@Nonnull Signature getSignature()
Gets aSignaturefor thisPathContext.- Returns:
Signatureobject
-
getQualifier
String getQualifier()
Gets the qualifier to be used.- Returns:
- qualifier, or
nullfor the standard qualifier
-
getVariables
@Nonnull Map<String,Object> getVariables()
Gets a map of variables to be used.- Returns:
- map of variables
-
-