Coverage Report - org.kuali.rice.kew.webservice.StandardResponse
 
Classes in this File Line Coverage Branch Coverage Complexity
StandardResponse
0%
0/22
N/A
1
 
 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  0
 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  
     public String getDocStatus() {
 30  0
         return docStatus;
 31  
     }
 32  
     public void setDocStatus(String docStatus) {
 33  0
         this.docStatus = docStatus;
 34  0
     }
 35  
     public String getCreateDate() {
 36  0
         return createDate;
 37  
     }
 38  
     public void setCreateDate(String createDate) {
 39  0
         this.createDate = createDate;
 40  0
     }
 41  
     public String getInitiatorPrincipalId() {
 42  0
         return initiatorPrincipalId;
 43  
     }
 44  
     public void setInitiatorPrincipalId(String initiatorId) {
 45  0
         this.initiatorPrincipalId = initiatorId;
 46  0
     }
 47  
     public String getAppDocId() {
 48  0
         return appDocId;
 49  
     }
 50  
     public void setAppDocId(String appDocId) {
 51  0
         this.appDocId = appDocId;
 52  0
     }
 53  
     public String getInitiatorName() {
 54  0
         return initiatorName;
 55  
     }
 56  
     public void setInitiatorName(String initiatorName) {
 57  0
         this.initiatorName = initiatorName;
 58  0
     }
 59  
     public String getRoutedByPrincipalId() {
 60  0
         return routedByPrincipalId;
 61  
     }
 62  
     public void setRoutedByPrincipalId(String routedByUserId) {
 63  0
         this.routedByPrincipalId = routedByUserId;
 64  0
     }
 65  
     public String getRoutedByUserName() {
 66  0
         return routedByUserName;
 67  
     }
 68  
     public void setRoutedByUserName(String routedByUserName) {
 69  0
         this.routedByUserName = routedByUserName;
 70  0
     }
 71  
 }