KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > dd > EjbRef


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.ejb3.dd;
8
9 /**
10  * Represents an ejb-ref element of the ejb-jar.xml deployment descriptor for
11  * the 1.4 schema
12  *
13  * @version <tt>$Revision: 1.6.2.2 $</tt>
14  * @author <a HREF="mailto:bdecoste@jboss.com">William DeCoste</a>
15  */

16 public class EjbRef
17 {
18    private String JavaDoc ejbRefName;
19
20    private String JavaDoc ejbRefType;
21
22    private String JavaDoc localHome;
23
24    private String JavaDoc local;
25    
26    private String JavaDoc remote;
27
28    private String JavaDoc ejbLink;
29    
30    private String JavaDoc injectionTarget;
31    
32    private String JavaDoc jndiName;
33    
34    public String JavaDoc getJndiName()
35    {
36       return jndiName;
37    }
38
39    public void setJndiName(String JavaDoc jndiName)
40    {
41       this.jndiName = jndiName;
42    }
43    
44    public String JavaDoc getInjectionTarget()
45    {
46       return injectionTarget;
47    }
48
49    public void setInjectionTarget(String JavaDoc injectionTarget)
50    {
51       this.injectionTarget = injectionTarget;
52    }
53
54    public String JavaDoc getEjbRefName()
55    {
56       return ejbRefName;
57    }
58
59    public void setEjbRefName(String JavaDoc ejbRefName)
60    {
61       this.ejbRefName = ejbRefName;
62    }
63
64    public String JavaDoc getEjbRefType()
65    {
66       return ejbRefType;
67    }
68
69    public void setEjbRefType(String JavaDoc ejbRefType)
70    {
71       this.ejbRefType = ejbRefType;
72    }
73
74    public String JavaDoc getLocalHome()
75    {
76       return localHome;
77    }
78
79    public void setLocalHome(String JavaDoc localHome)
80    {
81       this.localHome = localHome;
82    }
83
84    public String JavaDoc getLocal()
85    {
86       return local;
87    }
88
89    public void setLocal(String JavaDoc local)
90    {
91       this.local = local;
92    }
93    
94    public String JavaDoc getRemote()
95    {
96       return remote;
97    }
98
99    public void setRemote(String JavaDoc remote)
100    {
101       this.remote = remote;
102    }
103
104    public String JavaDoc getEjbLink()
105    {
106       return ejbLink;
107    }
108
109    public void setEjbLink(String JavaDoc ejbLink)
110    {
111       this.ejbLink = ejbLink;
112    }
113
114    public String JavaDoc toString()
115    {
116       StringBuffer JavaDoc sb = new StringBuffer JavaDoc(100);
117       sb.append("[");
118       sb.append("ejbRefName=").append(ejbRefName);
119       sb.append(", jndiName=").append(jndiName);
120       sb.append("]");
121       return sb.toString();
122    }
123 }
124
Popular Tags