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

EjbRef

public class EjbRef 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
EJB_REF_NAME
public static final String
JNDI_NAME
Constructors Summary
Methods Summary
public java.lang.StringgetEjbRefName()

		return (String)this.getValue(EJB_REF_NAME);
	
public java.lang.StringgetJndiName()

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

	// NOI18N

	// This attribute is mandatory
	   
	
		this.setValue(EJB_REF_NAME, value);
	
public voidsetJndiName(java.lang.String value)

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

		return true;