1 23 24 package com.sun.enterprise.deployment.runtime.common; 25 26 import com.sun.enterprise.deployment.runtime.RuntimeDescriptor; 27 28 35 public class EjbRef extends RuntimeDescriptor 36 { 37 38 static public final String EJB_REF_NAME = "EjbRefName"; static public final String JNDI_NAME = "JndiName"; 41 public void setEjbRefName(String value) 43 { 44 this.setValue(EJB_REF_NAME, value); 45 } 46 47 public String getEjbRefName() 49 { 50 return (String )this.getValue(EJB_REF_NAME); 51 } 52 53 public void setJndiName(String value) 55 { 56 this.setValue(JNDI_NAME, value); 57 } 58 59 public String getJndiName() 61 { 62 return (String )this.getValue(JNDI_NAME); 63 } 64 65 public boolean verify() 67 { 68 return true; 69 } 70 } 71 | Popular Tags |