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 String
getQualifier()
Gets the qualifier to be used.Signature
getSignature()
Gets aSignature
for thisPathContext
.Map<String,Object>
getVariables()
Gets a map of variables to be used.
-
-
-
Method Detail
-
getSignature
@Nonnull Signature getSignature()
Gets aSignature
for thisPathContext
.- Returns:
Signature
object
-
getQualifier
String getQualifier()
Gets the qualifier to be used.- Returns:
- qualifier, or
null
for the standard qualifier
-
getVariables
@Nonnull Map<String,Object> getVariables()
Gets a map of variables to be used.- Returns:
- map of variables
-
-