FileDocCategorySizeDatePackage
Servlet.javaAPI DocGlassfish v2 API3080Fri May 04 22:31:54 BST 2007com.sun.enterprise.deployment.runtime.web

Servlet

public class Servlet extends com.sun.enterprise.deployment.runtime.RuntimeDescriptor
this class contains runtime information for the web bundle it was kept to be backward compatible with the schema2beans descriptors generated by iAS 7.0 engineering team.
author
Jerome Dochez

Fields Summary
public static final String
SERVLET_NAME
public static final String
PRINCIPAL_NAME
Constructors Summary
Methods Summary
public java.lang.StringgetPrincipalName()

	return (String)this.getValue(PRINCIPAL_NAME);
    
public java.lang.StringgetServletName()

	return (String)this.getValue(SERVLET_NAME);
    
public voidsetPrincipalName(java.lang.String value)

	this.setValue(PRINCIPAL_NAME, value);
    
public voidsetServletName(java.lang.String value)

	// NOI18N
    
    // This attribute is mandatory
       
    
	this.setValue(SERVLET_NAME, value);
    
public booleanverify()

	return true;