Package com.ibm.ws.javaee.dd.web.common
Interface Servlet
- 
- All Superinterfaces:
- Describable,- DescriptionGroup
 
 public interface Servlet extends DescriptionGroup 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ParamValue>getInitParams()java.lang.StringgetJSPFile()intgetLoadOnStartup()MultipartConfiggetMultipartConfig()RunAsgetRunAs()java.util.List<SecurityRoleRef>getSecurityRoleRefs()java.lang.StringgetServletClass()java.lang.StringgetServletName()booleanisAsyncSupported()booleanisEnabled()booleanisNullLoadOnStartup()booleanisSetAsyncSupported()booleanisSetEnabled()booleanisSetLoadOnStartup()- 
Methods inherited from interface com.ibm.ws.javaee.dd.common.DescribablegetDescriptions
 - 
Methods inherited from interface com.ibm.ws.javaee.dd.common.DescriptionGroupgetDisplayNames, getIcons
 
- 
 
- 
- 
- 
Method Detail- 
getServletNamejava.lang.String getServletName() - Returns:
- <servlet-name>
 
 - 
getServletClassjava.lang.String getServletClass() - Returns:
- <servlet-class>, or null if unspecified
 
 - 
getJSPFilejava.lang.String getJSPFile() - Returns:
- <jsp-file>, or null if unspecified
 
 - 
getInitParamsjava.util.List<ParamValue> getInitParams() - Returns:
- <init-param> as a read-only list
 
 - 
isSetLoadOnStartupboolean isSetLoadOnStartup() - Returns:
- true if <load-on-startup> is specified
- See Also:
- isNullLoadOnStartup(),- getLoadOnStartup()
 
 - 
isNullLoadOnStartupboolean isNullLoadOnStartup() - Returns:
- true if <load-on-startup> is specified and was null
- See Also:
- isSetLoadOnStartup(),- getLoadOnStartup()
 
 - 
getLoadOnStartupint getLoadOnStartup() - Returns:
- <load-on-startup> if specified and not null
- See Also:
- isSetLoadOnStartup(),- isNullLoadOnStartup()
 
 - 
isSetEnabledboolean isSetEnabled() - Returns:
- true if <enabled> is specified
- See Also:
- isEnabled()
 
 - 
isEnabledboolean isEnabled() - Returns:
- <enabled> if specified
- See Also:
- isSetEnabled()
 
 - 
isSetAsyncSupportedboolean isSetAsyncSupported() - Returns:
- true if <async-supported> is specified
- See Also:
- isAsyncSupported()
 
 - 
isAsyncSupportedboolean isAsyncSupported() - Returns:
- <async-supported> if specified
- See Also:
- isSetAsyncSupported()
 
 - 
getRunAsRunAs getRunAs() - Returns:
- <run-as>, or null if unspecified
 
 - 
getSecurityRoleRefsjava.util.List<SecurityRoleRef> getSecurityRoleRefs() - Returns:
- <security-role-ref> as a read-only list
 
 - 
getMultipartConfigMultipartConfig getMultipartConfig() - Returns:
- <multipart-config>, or null if unspecified
 
 
- 
 
-