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

ResourceEnvRef

public class ResourceEnvRef 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
RESOURCE_ENV_REF_NAME
public static final String
JNDI_NAME
Constructors Summary
Methods Summary
public java.lang.StringgetJndiName()

		return (String)this.getValue(JNDI_NAME);
	
public java.lang.StringgetResourceEnvRefName()

		return (String)this.getValue(RESOURCE_ENV_REF_NAME);
	
public voidsetJndiName(java.lang.String value)

		this.setValue(JNDI_NAME, value);
	
public voidsetResourceEnvRefName(java.lang.String value)

	// NOI18N

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

		return true;