01: // This class was generated by the JAXRPC SI, do not edit.
02: // Contents subject to change without notice.
03: // JAX-RPC Standard Implementation (1.1.3, build R1)
04: // Generated source version: 1.1.3
05:
06: package org.jboss.test.wsrp.core;
07:
08: import java.io.Serializable;
09:
10: public class DestroyFailed implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = 5473237648959918416L;
13: protected java.lang.String portletHandle;
14: protected java.lang.String reason;
15:
16: public DestroyFailed() {
17: }
18:
19: public DestroyFailed(java.lang.String portletHandle,
20: java.lang.String reason) {
21: this .portletHandle = portletHandle;
22: this .reason = reason;
23: }
24:
25: public java.lang.String getPortletHandle() {
26: return portletHandle;
27: }
28:
29: public void setPortletHandle(java.lang.String portletHandle) {
30: this .portletHandle = portletHandle;
31: }
32:
33: public java.lang.String getReason() {
34: return reason;
35: }
36:
37: public void setReason(java.lang.String reason) {
38: this.reason = reason;
39: }
40: }
|