Package nl.gx.webmanager.wcb.servlettype
Interface ServletComponentDefinition
-
- All Superinterfaces:
ComponentDefinition
- All Known Implementing Classes:
ServletComponentDefinitionImpl
public interface ServletComponentDefinition extends ComponentDefinition
Component definition for a servlet component.- Author:
- ivol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getServletClassName()
Deprecated.Use the getInstanceClassName method if the implementation class of the component definition is a SimpleServletComponent.String
getServletUrlPath()
Returns the relative path which should lead a servlet request to the servlet implemented by this servlet component, ornull
if none is defined.-
Methods inherited from interface nl.gx.webmanager.wcb.ComponentDefinition
getComponentBundleDefinition, getControllerClassName, getDependencies, getDescription, getDisplayLanguage, getEntityClassNames, getEntityFactoryClassName, getExtensions, getId, getImplementationClassName, getImplementationInstance, getInstanceClassName, getInterfaceClassNames, getLanguageResourceMessage, getLanguageResourceMessages, getLanguageResources, getName, getNameSpace, getNodeType, getPermissionCategory, getPermissionsForPermissionGroups, getPersistenceManagerClassName, getProperties, getTypeId, getWrapperClassNames, isLicensed, setComponentBundleDefinition, setExtensions
-
-
-
-
Method Detail
-
getServletClassName
@Deprecated String getServletClassName()
Deprecated.Use the getInstanceClassName method if the implementation class of the component definition is a SimpleServletComponent. This way, dependency injection in the servlet instance class will be supported by means of a service set-method in the instance class.Returns the classname of the servlet associated with this component.- Returns:
- the class name of the servlet assosiated with this component
-
getServletUrlPath
String getServletUrlPath()
Returns the relative path which should lead a servlet request to the servlet implemented by this servlet component, ornull
if none is defined.- Returns:
- the relative path which should lead a servlet request to the servlet implemented by this
servlet component, or
null
if none is defined.
-
-