1 26 27 package com.bull.eclipse.jonas.utils.xml; 28 29 30 35 public class EjbLocalRefDesc { 36 37 40 private String ejbRefName = null; 41 42 45 private String ejbRefType = null; 46 47 50 private String localHome = null; 51 52 55 private String local = null; 56 57 60 private String ejbLink = null; 61 62 65 private String jndiName = null; 66 67 68 74 86 90 public String getEjbRefName() { 91 return ejbRefName; 92 } 93 94 98 public String getEjbRefType() { 99 return ejbRefType; 100 } 101 102 106 public String getLocalHome() { 107 return localHome; 108 } 109 110 114 public String getLocal() { 115 return local; 116 } 117 118 122 public String getEjbLink() { 123 return ejbLink; 124 } 125 126 130 public String getJndiLocalName() { 131 return jndiName; 132 } 133 134 138 public void setJndiLocalName(String jndiName) { 139 this.jndiName = jndiName; 140 } 141 142 146 public String toString() { 147 StringBuffer ret = new StringBuffer (); 148 ret.append("\ngetEjbRefName()=" + getEjbRefName()); 149 ret.append("\ngetEjbRefType()=" + getEjbRefType()); 150 ret.append("\ngetLocalHome()=" + getLocalHome()); 151 ret.append("\ngetLocal()=" + getLocal()); 152 ret.append("\ngetEjbLink()=" + getEjbLink()); 153 ret.append("\ngetJndiLocalName()=" + getJndiLocalName()); 154 return ret.toString(); 155 } 156 157 } 158 | Popular Tags |