|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| package jtr.ws.wsif; |
|
8 |
| |
|
9 |
| import org.apache.wsif.WSIFMessage; |
|
10 |
| import org.apache.wsif.WSIFOperation; |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| |
|
16 |
| |
|
17 |
| |
|
18 |
| public class WebServiceRtOperation { |
|
19 |
| |
|
20 |
| |
|
21 |
| |
|
22 |
0
| public WebServiceRtOperation() {
|
|
23 |
| } |
|
24 |
| |
|
25 |
| |
|
26 |
| |
|
27 |
| |
|
28 |
| |
|
29 |
0
| public String getName() {
|
|
30 |
0
| return name;
|
|
31 |
| } |
|
32 |
| |
|
33 |
| |
|
34 |
| |
|
35 |
| |
|
36 |
| |
|
37 |
| |
|
38 |
0
| public void setName(String name) {
|
|
39 |
0
| this.name = name;
|
|
40 |
| } |
|
41 |
| |
|
42 |
| |
|
43 |
| |
|
44 |
| |
|
45 |
| |
|
46 |
0
| public WSIFOperation getOperation() {
|
|
47 |
0
| return operation;
|
|
48 |
| } |
|
49 |
| |
|
50 |
| |
|
51 |
| |
|
52 |
| |
|
53 |
| |
|
54 |
| |
|
55 |
0
| public void setOperation(WSIFOperation operation) {
|
|
56 |
0
| this.operation = operation;
|
|
57 |
| } |
|
58 |
| |
|
59 |
| |
|
60 |
| |
|
61 |
| |
|
62 |
| |
|
63 |
0
| public WSIFMessage getFaultMsg() {
|
|
64 |
0
| return faultMsg;
|
|
65 |
| } |
|
66 |
| |
|
67 |
| |
|
68 |
| |
|
69 |
| |
|
70 |
| |
|
71 |
| |
|
72 |
0
| public void setFaultMsg(WSIFMessage faultMsg) {
|
|
73 |
0
| this.faultMsg = faultMsg;
|
|
74 |
| } |
|
75 |
| |
|
76 |
| |
|
77 |
| |
|
78 |
| |
|
79 |
| |
|
80 |
0
| public WSIFMessage getInputMsg() {
|
|
81 |
0
| return inputMsg;
|
|
82 |
| } |
|
83 |
| |
|
84 |
| |
|
85 |
| |
|
86 |
| |
|
87 |
| |
|
88 |
| |
|
89 |
0
| public void setInputMsg(WSIFMessage inputMsg) {
|
|
90 |
0
| this.inputMsg = inputMsg;
|
|
91 |
| } |
|
92 |
| |
|
93 |
| |
|
94 |
| |
|
95 |
| |
|
96 |
| |
|
97 |
0
| public WSIFMessage getOutputMsg() {
|
|
98 |
0
| return outputMsg;
|
|
99 |
| } |
|
100 |
| |
|
101 |
| |
|
102 |
| |
|
103 |
| |
|
104 |
| |
|
105 |
| |
|
106 |
0
| public void setOutputMsg(WSIFMessage outputMsg) {
|
|
107 |
0
| this.outputMsg = outputMsg;
|
|
108 |
| } |
|
109 |
| |
|
110 |
| private WSIFOperation operation; |
|
111 |
| |
|
112 |
| private String name; |
|
113 |
| |
|
114 |
| private WSIFMessage inputMsg; |
|
115 |
| |
|
116 |
| private WSIFMessage outputMsg; |
|
117 |
| |
|
118 |
| private WSIFMessage faultMsg; |
|
119 |
| } |