1
2
3
4
5
6
7
8 package it.imolinfo.jbi4ejb.descriptor;
9
10 import it.imolinfo.jbi4ejb.runtime.ejbproxy.StatelessEJBProxy;
11
12 import java.util.Properties;
13
14 import javax.xml.namespace.QName;
15
16
17
18
19
20
21
22 public class ProviderServiceDescriptor {
23
24
25
26 private Properties serialVersionUID = new Properties();
27
28
29
30 private Properties orbProperties;
31
32
33 private Properties jndiProperties;
34
35
36
37 private String name;
38
39
40 private String localizationType;
41
42
43
44 private String componentRootPath;
45
46
47 private QName serviceName;
48
49
50 private QName portTypeName = null;
51
52
53 private StatelessEJBProxy ejbProxy = null;
54
55
56
57
58 public ProviderServiceDescriptor() {}
59
60
61
62
63
64
65 public String getComponentRootPath() {
66 return componentRootPath;
67 }
68
69
70
71
72
73
74
75 public void setComponentRootPath(String componentRootPath) {
76 this.componentRootPath = componentRootPath;
77 }
78
79
80
81
82
83
84 public QName getServiceName() {
85 return serviceName;
86 }
87
88
89
90
91
92
93
94 public void setServiceName(QName serviceName) {
95 this.serviceName = serviceName;
96 }
97
98
99
100
101
102
103 public Properties getSerialVersionUID() {
104 return serialVersionUID;
105 }
106
107
108
109
110
111
112
113 public void setSerialVersionUID(Properties serialVersionUID) {
114 this.serialVersionUID = serialVersionUID;
115 }
116
117
118
119
120
121
122 public Properties getOrbProperties() {
123 return orbProperties;
124 }
125
126
127
128
129
130
131
132 public void setOrbProperties(Properties orbProperties) {
133 this.orbProperties = orbProperties;
134 }
135
136
137
138
139
140
141 public Properties getJndiProperties() {
142 return jndiProperties;
143 }
144
145
146
147
148
149
150
151 public void setJndiProperties(Properties jndiProperties) {
152 this.jndiProperties = jndiProperties;
153 }
154
155
156
157
158
159
160 public String getName() {
161 return name;
162 }
163
164
165
166
167
168
169
170 public void setName(String name) {
171 this.name = name;
172 }
173
174
175
176
177
178
179 public String getLocalizationType() {
180 return localizationType;
181 }
182
183
184
185
186
187
188
189 public void setLocalizationType(String localizationType) {
190 this.localizationType = localizationType;
191 }
192
193
194
195
196
197
198 public QName getPortTypeName() {
199 return portTypeName;
200 }
201
202
203
204
205
206
207
208 public void setPortTypeName(QName portTypeName) {
209 this.portTypeName = portTypeName;
210 }
211
212
213
214
215
216
217 public StatelessEJBProxy getEjbProxy() {
218 return ejbProxy;
219 }
220
221
222
223
224
225
226
227 public void setEjbProxy(StatelessEJBProxy ejbProxy) {
228 this.ejbProxy = ejbProxy;
229 }
230
231 }