Class URLMapEntry
- java.lang.Object
- 
- org.apache.turbine.services.urlmapper.model.URLMapEntry
 
- 
 public class URLMapEntry extends Object The url map model class- Author:
- Thomas Vandahl
 
- 
- 
Constructor SummaryConstructors Constructor Description URLMapEntry()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Integer>getGroupNamesMap()Get the map of group names to group indices for the stored PatternMap<String,String>getIgnoreParameters()Map<String,String>getImplicitParameters()Map<String,String>getOverrideParameters()Set<String>getRelevantKeys()Get the set of relevant keys for comparison (cached for performance)PatterngetUrlPattern()voidsetGroupNamesMap(Map<String,Integer> groupNamesMap)Set the map of group names to group indices for the stored Patternprotected voidsetIgnoreParameters(Map<String,String> ignore)protected voidsetImplicitParameters(Map<String,String> implicit)protected voidsetOverrideParameters(Map<String,String> override)voidsetRelevantKeys(Set<String> relevantKeys)Set the set of relevant keys for comparison (cached for performance)protected voidsetUrlPattern(Pattern urlPattern)StringtoString()
 
- 
- 
- 
Constructor Detail- 
URLMapEntrypublic URLMapEntry() 
 
- 
 - 
Method Detail- 
getUrlPatternpublic Pattern getUrlPattern() - Returns:
- the urlPattern
 
 - 
setUrlPatternprotected void setUrlPattern(Pattern urlPattern) - Parameters:
- urlPattern- the urlPattern to set
 
 - 
getImplicitParameterspublic Map<String,String> getImplicitParameters() - Returns:
- the implicit parameters
 
 - 
setImplicitParametersprotected void setImplicitParameters(Map<String,String> implicit) - Parameters:
- implicit- the implicit parameters to set
 
 - 
getIgnoreParameterspublic Map<String,String> getIgnoreParameters() - Returns:
- the ignored parameters
 
 - 
setIgnoreParametersprotected void setIgnoreParameters(Map<String,String> ignore) - Parameters:
- ignore- the ignored parameters to set
 
 - 
getOverrideParameterspublic Map<String,String> getOverrideParameters() - Returns:
- the override parameters
 
 - 
setOverrideParametersprotected void setOverrideParameters(Map<String,String> override) - Parameters:
- override- the override parameters to set
 
 - 
getGroupNamesMappublic Map<String,Integer> getGroupNamesMap() Get the map of group names to group indices for the stored Pattern- Returns:
- the groupNamesMap
 
 - 
setGroupNamesMappublic void setGroupNamesMap(Map<String,Integer> groupNamesMap) Set the map of group names to group indices for the stored Pattern- Parameters:
- groupNamesMap- the groupNamesMap to set
 
 - 
getRelevantKeyspublic Set<String> getRelevantKeys() Get the set of relevant keys for comparison (cached for performance)- Returns:
- the relevantKeys
 
 - 
setRelevantKeyspublic void setRelevantKeys(Set<String> relevantKeys) Set the set of relevant keys for comparison (cached for performance)- Parameters:
- relevantKeys- the relevantKeys to set
 
 
- 
 
-