1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kew.webservice; |
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
|
|
| 0% |
Uncovered Elements: 28 (28) |
Complexity: 14 |
Complexity Density: 1 |
|
21 |
|
public class StandardResponse extends ErrorResponse { |
22 |
|
protected String docStatus; |
23 |
|
protected String createDate; |
24 |
|
protected String initiatorPrincipalId; |
25 |
|
protected String routedByPrincipalId; |
26 |
|
protected String routedByUserName; |
27 |
|
protected String appDocId; |
28 |
|
protected String initiatorName; |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public String getDocStatus() {... |
30 |
0
|
return docStatus; |
31 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public void setDocStatus(String docStatus) {... |
33 |
0
|
this.docStatus = docStatus; |
34 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
35 |
0
|
public String getCreateDate() {... |
36 |
0
|
return createDate; |
37 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
public void setCreateDate(String createDate) {... |
39 |
0
|
this.createDate = createDate; |
40 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0
|
public String getInitiatorPrincipalId() {... |
42 |
0
|
return initiatorPrincipalId; |
43 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public void setInitiatorPrincipalId(String initiatorId) {... |
45 |
0
|
this.initiatorPrincipalId = initiatorId; |
46 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
47 |
0
|
public String getAppDocId() {... |
48 |
0
|
return appDocId; |
49 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public void setAppDocId(String appDocId) {... |
51 |
0
|
this.appDocId = appDocId; |
52 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0
|
public String getInitiatorName() {... |
54 |
0
|
return initiatorName; |
55 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
0
|
public void setInitiatorName(String initiatorName) {... |
57 |
0
|
this.initiatorName = initiatorName; |
58 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
0
|
public String getRoutedByPrincipalId() {... |
60 |
0
|
return routedByPrincipalId; |
61 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
0
|
public void setRoutedByPrincipalId(String routedByUserId) {... |
63 |
0
|
this.routedByPrincipalId = routedByUserId; |
64 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public String getRoutedByUserName() {... |
66 |
0
|
return routedByUserName; |
67 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
68 |
0
|
public void setRoutedByUserName(String routedByUserName) {... |
69 |
0
|
this.routedByUserName = routedByUserName; |
70 |
|
} |
71 |
|
} |