1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.ksb.messaging; |
18 | |
|
19 | |
import java.io.Serializable; |
20 | |
import java.net.URL; |
21 | |
import java.net.URLEncoder; |
22 | |
|
23 | |
import javax.xml.namespace.QName; |
24 | |
|
25 | |
import org.apache.commons.lang.StringUtils; |
26 | |
import org.apache.commons.lang.builder.ReflectionToStringBuilder; |
27 | |
import org.apache.log4j.Logger; |
28 | |
import org.kuali.rice.core.config.ConfigContext; |
29 | |
import org.kuali.rice.core.config.ConfigurationException; |
30 | |
import org.kuali.rice.core.security.credentials.CredentialsSource; |
31 | |
import org.kuali.rice.core.security.credentials.CredentialsSource.CredentialsType; |
32 | |
import org.kuali.rice.core.util.ClassLoaderUtils; |
33 | |
import org.kuali.rice.ksb.messaging.exceptionhandling.DefaultMessageExceptionHandler; |
34 | |
import org.springframework.util.Assert; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
public abstract class ServiceDefinition implements Serializable { |
43 | |
|
44 | 0 | private static final Logger LOG = Logger.getLogger(ServiceDefinition.class); |
45 | |
|
46 | |
private static final long serialVersionUID = 43631161206712702L; |
47 | |
|
48 | |
private transient Object service; |
49 | |
private String localServiceName; |
50 | |
private String serviceNameSpaceURI; |
51 | |
private transient QName serviceName; |
52 | 0 | private Boolean queue = Boolean.TRUE; |
53 | |
private Integer priority; |
54 | |
private Integer retryAttempts; |
55 | |
private Long millisToLive; |
56 | |
private String messageExceptionHandler; |
57 | |
private String servicePath; |
58 | |
private URL serviceEndPoint; |
59 | 0 | private Boolean busSecurity = Boolean.TRUE; |
60 | |
private CredentialsType credentialsType; |
61 | |
private String serviceNamespace; |
62 | |
|
63 | |
|
64 | |
private transient ClassLoader serviceClassLoader; |
65 | |
|
66 | 0 | public ServiceDefinition() { |
67 | 0 | serviceClassLoader = ClassLoaderUtils.getDefaultClassLoader(); |
68 | 0 | } |
69 | |
|
70 | 0 | public ServiceDefinition(final Boolean busSecurity) { |
71 | 0 | Assert.notNull(busSecurity, "busSecurity cannot be null"); |
72 | 0 | this.busSecurity = busSecurity; |
73 | 0 | } |
74 | |
|
75 | |
public Object getService() { |
76 | 0 | return this.service; |
77 | |
} |
78 | |
public void setService(Object service) { |
79 | 0 | this.service = service; |
80 | 0 | } |
81 | |
public String getLocalServiceName() { |
82 | 0 | return this.localServiceName; |
83 | |
} |
84 | |
public void setLocalServiceName(String serviceName) { |
85 | 0 | this.localServiceName = serviceName; |
86 | 0 | } |
87 | |
public String getMessageExceptionHandler() { |
88 | 0 | return this.messageExceptionHandler; |
89 | |
} |
90 | |
public void setMessageExceptionHandler(String messageExceptionHandler) { |
91 | 0 | this.messageExceptionHandler = messageExceptionHandler; |
92 | 0 | } |
93 | |
public Integer getPriority() { |
94 | 0 | return this.priority; |
95 | |
} |
96 | |
public void setPriority(Integer priority) { |
97 | 0 | this.priority = priority; |
98 | 0 | } |
99 | |
public Boolean getQueue() { |
100 | 0 | return this.queue; |
101 | |
} |
102 | |
public void setQueue(Boolean queue) { |
103 | 0 | this.queue = queue; |
104 | 0 | } |
105 | |
public Integer getRetryAttempts() { |
106 | 0 | return this.retryAttempts; |
107 | |
} |
108 | |
public void setRetryAttempts(Integer retryAttempts) { |
109 | 0 | this.retryAttempts = retryAttempts; |
110 | 0 | } |
111 | |
|
112 | |
public QName getServiceName() { |
113 | 0 | if (this.serviceName == null) { |
114 | 0 | if (this.localServiceName == null) { |
115 | 0 | int i = 0; |
116 | |
} |
117 | 0 | if (this.serviceNameSpaceURI == null) { |
118 | 0 | this.serviceName = new QName(this.serviceNamespace, this.localServiceName); |
119 | |
} else { |
120 | 0 | this.serviceName = new QName(this.serviceNameSpaceURI, this.localServiceName); |
121 | |
} |
122 | |
|
123 | |
} |
124 | 0 | return this.serviceName; |
125 | |
} |
126 | |
public void setServiceName(QName serviceName) { |
127 | 0 | this.serviceName = serviceName; |
128 | 0 | } |
129 | |
public URL getServiceEndPoint() { |
130 | 0 | return this.serviceEndPoint; |
131 | |
} |
132 | |
public void setServiceEndPoint(URL serviceEndPoint) { |
133 | 0 | this.serviceEndPoint = serviceEndPoint; |
134 | 0 | } |
135 | |
|
136 | |
public void setCredentialsType(CredentialsSource.CredentialsType credentialsType) { |
137 | 0 | this.credentialsType = credentialsType; |
138 | 0 | } |
139 | |
|
140 | |
public CredentialsSource.CredentialsType getCredentialsType() { |
141 | 0 | return this.credentialsType; |
142 | |
} |
143 | |
|
144 | |
public ClassLoader getServiceClassLoader() { |
145 | 0 | return this.serviceClassLoader; |
146 | |
} |
147 | |
|
148 | |
public void setServiceClassLoader(ClassLoader serviceClassLoader) { |
149 | 0 | this.serviceClassLoader = serviceClassLoader; |
150 | 0 | } |
151 | |
|
152 | |
public void validate() { |
153 | |
|
154 | 0 | if (this.serviceName == null && this.localServiceName == null) { |
155 | 0 | throw new ConfigurationException("Must give a serviceName or localServiceName"); |
156 | |
} |
157 | |
|
158 | 0 | String serviceNamespace = ConfigContext.getCurrentContextConfig().getServiceNamespace(); |
159 | 0 | if (serviceNamespace == null) { |
160 | 0 | throw new ConfigurationException("Must have a ServiceNamespace"); |
161 | |
} |
162 | 0 | this.serviceNamespace = serviceNamespace; |
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | |
|
171 | |
|
172 | 0 | if (this.serviceName != null && this.localServiceName == null) { |
173 | 0 | this.localServiceName = this.getServiceName().getLocalPart(); |
174 | |
} |
175 | |
|
176 | 0 | if (this.servicePath != null){ |
177 | 0 | if (this.servicePath.endsWith("/")){ |
178 | 0 | this.servicePath = StringUtils.chop(servicePath); |
179 | |
} |
180 | 0 | if (!this.servicePath.startsWith("/")){ |
181 | 0 | this.servicePath = "/" + this.servicePath; |
182 | |
} |
183 | |
} else { |
184 | 0 | this.servicePath = "/"; |
185 | |
} |
186 | |
|
187 | 0 | LOG.debug("Validating service " + this.serviceName); |
188 | |
|
189 | 0 | String endPointURL = ConfigContext.getCurrentContextConfig().getEndPointUrl(); |
190 | 0 | if (this.serviceEndPoint == null && endPointURL == null) { |
191 | 0 | throw new ConfigurationException("Must provide a serviceEndPoint or serviceServletURL"); |
192 | 0 | } else if (this.serviceEndPoint == null) { |
193 | 0 | if (! endPointURL.endsWith("/")) { |
194 | 0 | endPointURL += servicePath; |
195 | |
} else { |
196 | 0 | endPointURL = StringUtils.chop(endPointURL) + servicePath; |
197 | |
} |
198 | |
try { |
199 | 0 | if (servicePath.equals("/")){ |
200 | 0 | this.serviceEndPoint = new URL(endPointURL + this.getServiceName().getLocalPart()); |
201 | |
} else { |
202 | 0 | this.serviceEndPoint = new URL(endPointURL + "/" + this.getServiceName().getLocalPart()); |
203 | |
} |
204 | 0 | } catch (Exception e) { |
205 | 0 | throw new ConfigurationException("Service Endpoint URL creation failed.", e); |
206 | 0 | } |
207 | |
|
208 | |
} |
209 | |
|
210 | 0 | if (this.service == null) { |
211 | 0 | throw new ConfigurationException("Must provide a service"); |
212 | |
} |
213 | |
|
214 | 0 | if (this.priority == null) { |
215 | 0 | setPriority(5); |
216 | |
} |
217 | |
|
218 | 0 | if (this.retryAttempts == null) { |
219 | 0 | setRetryAttempts(0); |
220 | |
} |
221 | |
|
222 | 0 | if (this.millisToLive == null) { |
223 | 0 | setMillisToLive(new Long(-1)); |
224 | |
} |
225 | |
|
226 | 0 | if (getMessageExceptionHandler() == null) { |
227 | 0 | setMessageExceptionHandler(DefaultMessageExceptionHandler.class.getName()); |
228 | |
} |
229 | 0 | } |
230 | |
public String getServiceNameSpaceURI() { |
231 | 0 | return this.serviceNameSpaceURI; |
232 | |
} |
233 | |
public void setServiceNameSpaceURI(String serviceNameSpaceURI) { |
234 | 0 | this.serviceNameSpaceURI = serviceNameSpaceURI; |
235 | 0 | } |
236 | |
public Long getMillisToLive() { |
237 | 0 | return this.millisToLive; |
238 | |
} |
239 | |
public void setMillisToLive(Long millisToLive) { |
240 | 0 | this.millisToLive = millisToLive; |
241 | 0 | } |
242 | |
public Boolean getBusSecurity() { |
243 | 0 | return this.busSecurity; |
244 | |
} |
245 | |
public void setBusSecurity(Boolean busSecurity) { |
246 | 0 | this.busSecurity = busSecurity; |
247 | 0 | } |
248 | |
public boolean isSame(ServiceDefinition serviceDefinition) { |
249 | 0 | return this.getBusSecurity().equals(serviceDefinition.getBusSecurity()) && |
250 | |
this.getMessageExceptionHandler().equals(serviceDefinition.getMessageExceptionHandler()) && |
251 | |
this.getMillisToLive().equals(serviceDefinition.getMillisToLive()) && |
252 | |
this.getPriority().equals(serviceDefinition.getPriority()) && |
253 | |
this.getQueue().equals(serviceDefinition.getQueue()) && |
254 | |
this.getRetryAttempts().equals(serviceDefinition.getRetryAttempts()) && |
255 | |
this.getServiceEndPoint().equals(serviceDefinition.getServiceEndPoint()) && |
256 | |
this.getServiceName().equals(serviceDefinition.getServiceName()) && |
257 | |
this.getCredentialsType() == serviceDefinition.getCredentialsType(); |
258 | |
} |
259 | |
|
260 | |
public String toString() { |
261 | 0 | return ReflectionToStringBuilder.toString(this); |
262 | |
} |
263 | |
|
264 | |
|
265 | |
|
266 | |
|
267 | |
public String getServicePath() { |
268 | 0 | return this.servicePath; |
269 | |
} |
270 | |
|
271 | |
|
272 | |
|
273 | |
|
274 | |
public void setServicePath(String servicePath) { |
275 | 0 | this.servicePath = servicePath; |
276 | 0 | } |
277 | |
} |