Fields Summary |
---|
public static final String | SECURITY_ROLE_MAPPING |
public static final String | SERVLET |
public static final String | SESSION_CONFIG |
public static final String | RESOURCE_ENV_REF |
public static final String | RESOURCE_REF |
public static final String | EJB_REF |
public static final String | CACHE |
public static final String | CLASS_LOADER |
public static final String | JSP_CONFIG |
public static final String | LOCALE_CHARSET_INFO |
public static final String | PARAMETER_ENCODING |
public static final String | FORM_HINT_FIELD |
public static final String | DEFAULT_CHARSET |
public static final String | IDEMPOTENT_URL_PATTERN |
public static final String | ERROR_URL |
public static final String | HTTPSERVLET_SECURITY_PROVIDER |
Methods Summary |
---|
public int | addEjbRef(com.sun.enterprise.deployment.runtime.common.EjbRef value)
return this.addValue(EJB_REF, value);
|
public int | addIdempotentUrlPattern(IdempotentUrlPattern value)
return this.addValue(IDEMPOTENT_URL_PATTERN, value);
|
public int | addResourceEnvRef(com.sun.enterprise.deployment.runtime.common.ResourceEnvRef value)
return this.addValue(RESOURCE_ENV_REF, value);
|
public int | addResourceRef(com.sun.enterprise.deployment.runtime.common.ResourceRef value)
return this.addValue(RESOURCE_REF, value);
|
public int | addSecurityRoleMapping(com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping value)
return this.addValue(SECURITY_ROLE_MAPPING, value);
|
public int | addServlet(Servlet value)
return this.addValue(SERVLET, value);
|
public Cache | getCache()
return (Cache)this.getValue(CACHE);
|
public java.lang.ClassLoader | getClassLoader()
return (ClassLoader)this.getValue(CLASS_LOADER);
|
public com.sun.enterprise.deployment.runtime.common.EjbRef | getEjbRef(int index)
return (EjbRef)this.getValue(EJB_REF, index);
|
public com.sun.enterprise.deployment.runtime.common.EjbRef[] | getEjbRef()
// this is crazy
return (EjbRef[])this.getValues(EJB_REF);
|
public IdempotentUrlPattern | getIdempotentUrlPattern(int index)
return (IdempotentUrlPattern)this.getValue(IDEMPOTENT_URL_PATTERN, index);
|
public IdempotentUrlPattern[] | getIdempotentUrlPatterns()
return (IdempotentUrlPattern[])this.getValues(IDEMPOTENT_URL_PATTERN);
|
public JspConfig | getJspConfig()
return (JspConfig)this.getValue(JSP_CONFIG);
|
public LocaleCharsetInfo | getLocaleCharsetInfo()
return (LocaleCharsetInfo)this.getValue(LOCALE_CHARSET_INFO);
|
public com.sun.enterprise.deployment.runtime.common.ResourceEnvRef | getResourceEnvRef(int index)
return (ResourceEnvRef)this.getValue(RESOURCE_ENV_REF, index);
|
public com.sun.enterprise.deployment.runtime.common.ResourceEnvRef[] | getResourceEnvRef()
return (ResourceEnvRef[])this.getValues(RESOURCE_ENV_REF);
|
public com.sun.enterprise.deployment.runtime.common.ResourceRef | getResourceRef(int index)
return (ResourceRef)this.getValue(RESOURCE_REF, index);
|
public com.sun.enterprise.deployment.runtime.common.ResourceRef[] | getResourceRef()
return (ResourceRef[])this.getValues(RESOURCE_REF);
|
public com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping | getSecurityRoleMapping(int index)
return (SecurityRoleMapping)this.getValue(SECURITY_ROLE_MAPPING, index);
|
public com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping[] | getSecurityRoleMapping()
return (SecurityRoleMapping[])this.getValues(SECURITY_ROLE_MAPPING);
|
public Servlet | getServlet(int index)
return (Servlet)this.getValue(SERVLET, index);
|
public Servlet[] | getServlet()
return (Servlet[])this.getValues(SERVLET);
|
public SessionConfig | getSessionConfig()
return (SessionConfig)this.getValue(SESSION_CONFIG);
|
public boolean | isParameterEncoding()
Boolean ret = (Boolean)this.getValue(PARAMETER_ENCODING);
if (ret == null) {
return false;
}
return ret.booleanValue();
|
public int | removeEjbRef(com.sun.enterprise.deployment.runtime.common.EjbRef value)
return this.removeValue(EJB_REF, value);
|
public int | removeIdempotentUrlPattern(IdempotentUrlPattern value)
return this.removeValue(IDEMPOTENT_URL_PATTERN, value);
|
public int | removeResourceEnvRef(com.sun.enterprise.deployment.runtime.common.ResourceEnvRef value)
return this.removeValue(RESOURCE_ENV_REF, value);
|
public int | removeResourceRef(com.sun.enterprise.deployment.runtime.common.ResourceRef value)
return this.removeValue(RESOURCE_REF, value);
|
public int | removeSecurityRoleMapping(com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping value)
return this.removeValue(SECURITY_ROLE_MAPPING, value);
|
public int | removeServlet(Servlet value)
return this.removeValue(SERVLET, value);
|
public void | setCache(Cache value)
this.setValue(CACHE, value);
|
public void | setClassLoader(java.lang.ClassLoader value)
this.setValue(CLASS_LOADER, value);
|
public void | setEjbRef(int index, com.sun.enterprise.deployment.runtime.common.EjbRef value)
this.setValue(EJB_REF, index, value);
|
public void | setEjbRef(com.sun.enterprise.deployment.runtime.common.EjbRef[] value)
this.setValue(EJB_REF, value);
|
public void | setIdempotentUrlPattern(int index, IdempotentUrlPattern value)
this.setValue(IDEMPOTENT_URL_PATTERN, index, value);
|
public void | setIdempotentUrlPatterns(IdempotentUrlPattern[] value)
this.setValue(IDEMPOTENT_URL_PATTERN, value);
|
public void | setJspConfig(JspConfig value)
this.setValue(JSP_CONFIG, value);
|
public void | setLocaleCharsetInfo(LocaleCharsetInfo value)
this.setValue(LOCALE_CHARSET_INFO, value);
|
public void | setParameterEncoding(boolean value)
this.setValue(PARAMETER_ENCODING, Boolean.valueOf(value));
|
public void | setResourceEnvRef(int index, com.sun.enterprise.deployment.runtime.common.ResourceEnvRef value)
this.setValue(RESOURCE_ENV_REF, index, value);
|
public void | setResourceEnvRef(com.sun.enterprise.deployment.runtime.common.ResourceEnvRef[] value)
this.setValue(RESOURCE_ENV_REF, value);
|
public void | setResourceRef(int index, com.sun.enterprise.deployment.runtime.common.ResourceRef value)
this.setValue(RESOURCE_REF, index, value);
|
public void | setResourceRef(com.sun.enterprise.deployment.runtime.common.ResourceRef[] value)
this.setValue(RESOURCE_REF, value);
|
public void | setSecurityRoleMapping(int index, com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping value)
this.setValue(SECURITY_ROLE_MAPPING, index, value);
|
public void | setSecurityRoleMapping(com.sun.enterprise.deployment.runtime.common.SecurityRoleMapping[] value)
this.setValue(SECURITY_ROLE_MAPPING, value);
|
public void | setServlet(Servlet[] value)
this.setValue(SERVLET, value);
|
public void | setServlet(int index, Servlet value)
this.setValue(SERVLET, index, value);
|
public void | setSessionConfig(SessionConfig value)
this.setValue(SESSION_CONFIG, value);
|
public int | sizeEjbRef()
return this.size(EJB_REF);
|
public int | sizeIdempotentUrlPattern()
return this.size(IDEMPOTENT_URL_PATTERN);
|
public int | sizeResourceEnvRef()
return this.size(RESOURCE_ENV_REF);
|
public int | sizeResourceRef()
return this.size(RESOURCE_REF);
|
public int | sizeSecurityRoleMapping()
return this.size(SECURITY_ROLE_MAPPING);
|
public int | sizeServlet()
return this.size(SERVLET);
|
public boolean | verify()
return true;
|