Clover Coverage Report - API 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
14   71   14   1
0   52   1   14
14     1  
1    
 
  StandardResponse       Line # 21 14 0% 14 28 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2008-2009 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16    package org.kuali.rice.kew.webservice;
17   
18    /**
19    * "Standard" response object
20    */
 
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;
 
29  0 toggle public String getDocStatus() {
30  0 return docStatus;
31    }
 
32  0 toggle public void setDocStatus(String docStatus) {
33  0 this.docStatus = docStatus;
34    }
 
35  0 toggle public String getCreateDate() {
36  0 return createDate;
37    }
 
38  0 toggle public void setCreateDate(String createDate) {
39  0 this.createDate = createDate;
40    }
 
41  0 toggle public String getInitiatorPrincipalId() {
42  0 return initiatorPrincipalId;
43    }
 
44  0 toggle public void setInitiatorPrincipalId(String initiatorId) {
45  0 this.initiatorPrincipalId = initiatorId;
46    }
 
47  0 toggle public String getAppDocId() {
48  0 return appDocId;
49    }
 
50  0 toggle public void setAppDocId(String appDocId) {
51  0 this.appDocId = appDocId;
52    }
 
53  0 toggle public String getInitiatorName() {
54  0 return initiatorName;
55    }
 
56  0 toggle public void setInitiatorName(String initiatorName) {
57  0 this.initiatorName = initiatorName;
58    }
 
59  0 toggle public String getRoutedByPrincipalId() {
60  0 return routedByPrincipalId;
61    }
 
62  0 toggle public void setRoutedByPrincipalId(String routedByUserId) {
63  0 this.routedByPrincipalId = routedByUserId;
64    }
 
65  0 toggle public String getRoutedByUserName() {
66  0 return routedByUserName;
67    }
 
68  0 toggle public void setRoutedByUserName(String routedByUserName) {
69  0 this.routedByUserName = routedByUserName;
70    }
71    }