Package com.ibm.ws.javaee.dd.web.common
Interface Servlet
-
- All Superinterfaces:
Describable
,DescriptionGroup
public interface Servlet extends DescriptionGroup
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ParamValue>
getInitParams()
java.lang.String
getJSPFile()
int
getLoadOnStartup()
MultipartConfig
getMultipartConfig()
RunAs
getRunAs()
java.util.List<SecurityRoleRef>
getSecurityRoleRefs()
java.lang.String
getServletClass()
java.lang.String
getServletName()
boolean
isAsyncSupported()
boolean
isEnabled()
boolean
isNullLoadOnStartup()
boolean
isSetAsyncSupported()
boolean
isSetEnabled()
boolean
isSetLoadOnStartup()
-
Methods inherited from interface com.ibm.ws.javaee.dd.common.Describable
getDescriptions
-
Methods inherited from interface com.ibm.ws.javaee.dd.common.DescriptionGroup
getDisplayNames, getIcons
-
-
-
-
Method Detail
-
getServletName
java.lang.String getServletName()
- Returns:
- <servlet-name>
-
getServletClass
java.lang.String getServletClass()
- Returns:
- <servlet-class>, or null if unspecified
-
getJSPFile
java.lang.String getJSPFile()
- Returns:
- <jsp-file>, or null if unspecified
-
getInitParams
java.util.List<ParamValue> getInitParams()
- Returns:
- <init-param> as a read-only list
-
isSetLoadOnStartup
boolean isSetLoadOnStartup()
- Returns:
- true if <load-on-startup> is specified
- See Also:
isNullLoadOnStartup()
,getLoadOnStartup()
-
isNullLoadOnStartup
boolean isNullLoadOnStartup()
- Returns:
- true if <load-on-startup> is specified and was null
- See Also:
isSetLoadOnStartup()
,getLoadOnStartup()
-
getLoadOnStartup
int getLoadOnStartup()
- Returns:
- <load-on-startup> if specified and not null
- See Also:
isSetLoadOnStartup()
,isNullLoadOnStartup()
-
isSetEnabled
boolean isSetEnabled()
- Returns:
- true if <enabled> is specified
- See Also:
isEnabled()
-
isEnabled
boolean isEnabled()
- Returns:
- <enabled> if specified
- See Also:
isSetEnabled()
-
isSetAsyncSupported
boolean isSetAsyncSupported()
- Returns:
- true if <async-supported> is specified
- See Also:
isAsyncSupported()
-
isAsyncSupported
boolean isAsyncSupported()
- Returns:
- <async-supported> if specified
- See Also:
isSetAsyncSupported()
-
getRunAs
RunAs getRunAs()
- Returns:
- <run-as>, or null if unspecified
-
getSecurityRoleRefs
java.util.List<SecurityRoleRef> getSecurityRoleRefs()
- Returns:
- <security-role-ref> as a read-only list
-
getMultipartConfig
MultipartConfig getMultipartConfig()
- Returns:
- <multipart-config>, or null if unspecified
-
-