FileDocCategorySizeDatePackage
DefaultResourcePrincipal.javaAPI DocGlassfish v2 API3035Fri May 04 22:31:52 BST 2007com.sun.enterprise.deployment.runtime.common

DefaultResourcePrincipal

public class DefaultResourcePrincipal extends com.sun.enterprise.deployment.runtime.RuntimeDescriptor
this class is a shameful duplication of info found in normal descriptors 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
NAME
public static final String
PASSWORD
Constructors Summary
Methods Summary
public java.lang.StringgetName()

	return (String)this.getValue(NAME);
    
public java.lang.StringgetPassword()

	return (String)this.getValue(PASSWORD);
    
public voidsetName(java.lang.String value)

	// NOI18N
    
    // This attribute is mandatory
       
    
	this.setValue(NAME, value);
    
public voidsetPassword(java.lang.String value)

	this.setValue(PASSWORD, value);
    
public booleanverify()

	return true;