atg.repository.seo
Class UrlTemplateMapperImpl

java.lang.Object
  extended by atg.nucleus.logging.VariableArgumentApplicationLoggingImpl
      extended by atg.nucleus.GenericService
          extended by atg.repository.seo.UrlTemplateMapperImpl
All Implemented Interfaces:
atg.naming.AbsoluteNameable, NameContextBindingListener, NameContextElement, atg.naming.NameContextParentable, NameResolver, AdminableService, atg.nucleus.Configured, ApplicationLogging, atg.nucleus.logging.ApplicationLoggingSender, atg.nucleus.logging.TraceApplicationLogging, VariableArgumentApplicationLogging, ComponentNameResolver, Service, ServiceListener, UrlTemplateMapper, java.util.EventListener

public class UrlTemplateMapperImpl
extends GenericService
implements UrlTemplateMapper

Class to hold a list of UrlTemplate components.

This list contains all the UrlTemplate components for a specific item descriptor name. A request will get the first template in the list that matches the browser type.


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 UrlTemplate mDefaultTemplate
          Default UrlTemplate component to be used when no match is found in the UrlTemplate array property.
 UrlTemplate[] mTemplates
          Array of UrlTemplate components
 
Fields inherited from class atg.nucleus.GenericService
SERVICE_INFO_KEY
 
Fields inherited from interface atg.nucleus.logging.TraceApplicationLogging
DEFAULT_LOG_TRACE_STATUS
 
Fields inherited from interface atg.nucleus.logging.ApplicationLogging
DEFAULT_LOG_DEBUG_STATUS, DEFAULT_LOG_ERROR_STATUS, DEFAULT_LOG_INFO_STATUS, DEFAULT_LOG_WARNING_STATUS
 
Constructor Summary
UrlTemplateMapperImpl()
           
 
Method Summary
 UrlTemplate getDefaultTemplate()
          Getter method for the default template.
 UrlTemplate[] getTemplates()
          Getter method of array of UrlTemplate components
 UrlTemplate getUrlTemplate(DynamoHttpServletRequest pRequest)
          Method to get the UrlTemplate object for the request browser type.
 void setDefaultTemplate(UrlTemplate pDefaultTemplate)
          Setter method for the default template
 void setTemplates(UrlTemplate[] pTemplates)
          Setter method of array of UrlTemplate components
 
Methods inherited from class atg.nucleus.GenericService
addLogListener, createAdminServlet, doStartService, doStopService, getAbsoluteName, getAdminServlet, getAdminServletOutputStreamEncoding, getLoggingForVlogging, getLogListenerCount, getLogListeners, getName, getNameContext, getNucleus, getRoot, getServiceConfiguration, getServiceInfo, isAdminServletUseServletOutputStream, isLoggingDebug, isLoggingError, isLoggingInfo, isLoggingTrace, isLoggingWarning, isRunning, logDebug, logDebug, logDebug, logError, logError, logError, logInfo, logInfo, logInfo, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, nameContextElementBound, nameContextElementUnbound, removeLogListener, reResolveThis, resolveName, resolveName, resolveName, resolveName, sendLogEvent, setAdminServletOutputStreamEncoding, setAdminServletUseServletOutputStream, setLoggingDebug, setLoggingError, setLoggingInfo, setLoggingTrace, setLoggingWarning, setNucleus, setServiceInfo, startService, stopService
 
Methods inherited from class atg.nucleus.logging.VariableArgumentApplicationLoggingImpl
vlogDebug, vlogDebug, vlogDebug, vlogDebug, vlogDebugTrace, vlogError, vlogError, vlogError, vlogError, vlogInfo, vlogInfo, vlogInfo, vlogInfo, vlogTrace, vlogTrace, vlogTrace, vlogTrace, vlogWarning, vlogWarning, vlogWarning, vlogWarning
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string


mTemplates

public UrlTemplate[] mTemplates
Array of UrlTemplate components


mDefaultTemplate

public UrlTemplate mDefaultTemplate
Default UrlTemplate component to be used when no match is found in the UrlTemplate array property.

Constructor Detail

UrlTemplateMapperImpl

public UrlTemplateMapperImpl()
Method Detail

getTemplates

public UrlTemplate[] getTemplates()
Getter method of array of UrlTemplate components

Returns:
Array of UrlTemplate components

setTemplates

public void setTemplates(UrlTemplate[] pTemplates)
Setter method of array of UrlTemplate components

Parameters:
pTemplates - Array of UrlTemplate components.

getDefaultTemplate

public UrlTemplate getDefaultTemplate()
Getter method for the default template.

Returns:
the default UrlTemplate component to use

setDefaultTemplate

public void setDefaultTemplate(UrlTemplate pDefaultTemplate)
Setter method for the default template

Parameters:
pDefaultTemplate - UrlTemplate to use as the default

getUrlTemplate

public UrlTemplate getUrlTemplate(DynamoHttpServletRequest pRequest)
Method to get the UrlTemplate object for the request browser type.

If it can't find a match it will try to use the default template. This can be either an indirect or a direct Url template.

Specified by:
getUrlTemplate in interface UrlTemplateMapper
Parameters:
pRequest - DynamoHttpServletRequest object
Returns:
UrlTemplate object mapped to the browser type of the request or null if no match.