Coverage Report - org.kuali.rice.kew.dto.RouteNodeDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
RouteNodeDTO
0%
0/42
N/A
1
 
 1  
 /*
 2  
  * Copyright 2005-2008 The Kuali Foundation
 3  
  * 
 4  
  * 
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  * 
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.dto;
 18  
 
 19  
 /**
 20  
  * Transport object representing a RouteNode.
 21  
  */
 22  
 public class RouteNodeDTO implements java.io.Serializable, Cloneable {
 23  
     
 24  
     private static final long serialVersionUID = 6547166752590755847L;
 25  
     
 26  
     private Long routeNodeId;
 27  
     private Long documentTypeId;
 28  
     private String routeNodeName;
 29  
     private String routeMethodName;
 30  
     private String routeMethodCode;
 31  
     private boolean finalApprovalInd;
 32  
     private boolean mandatoryRouteInd;
 33  
     private String activationType;
 34  
     private String exceptionGroupId;
 35  
     private String nodeType;
 36  
     private String branchName;
 37  0
     private Long[] previousNodeIds = new Long[0];
 38  0
     private Long[] nextNodeIds = new Long[0];
 39  
     
 40  0
     public RouteNodeDTO() {}
 41  
     
 42  
     public String getActivationType() {
 43  0
         return activationType;
 44  
     }
 45  
     public void setActivationType(String activationType) {
 46  0
         this.activationType = activationType;
 47  0
     }
 48  
     public String getBranchName() {
 49  0
         return branchName;
 50  
     }
 51  
     public void setBranchName(String branchName) {
 52  0
         this.branchName = branchName;
 53  0
     }
 54  
     public Long getDocumentTypeId() {
 55  0
         return documentTypeId;
 56  
     }
 57  
     public void setDocumentTypeId(Long documentTypeId) {
 58  0
         this.documentTypeId = documentTypeId;
 59  0
     }
 60  
     public String getExceptionGroupId() {
 61  0
         return exceptionGroupId;
 62  
     }
 63  
     public void setExceptionGroupId(String exceptionGroupId) {
 64  0
         this.exceptionGroupId = exceptionGroupId;
 65  0
     }
 66  
     public boolean isFinalApprovalInd() {
 67  0
         return finalApprovalInd;
 68  
     }
 69  
     public void setFinalApprovalInd(boolean finalApprovalInd) {
 70  0
         this.finalApprovalInd = finalApprovalInd;
 71  0
     }
 72  
     public boolean isMandatoryRouteInd() {
 73  0
         return mandatoryRouteInd;
 74  
     }
 75  
     public void setMandatoryRouteInd(boolean mandatoryRouteInd) {
 76  0
         this.mandatoryRouteInd = mandatoryRouteInd;
 77  0
     }
 78  
     public Long[] getNextNodeIds() {
 79  0
         return nextNodeIds;
 80  
     }
 81  
     public void setNextNodeIds(Long[] nextNodeIds) {
 82  0
         this.nextNodeIds = nextNodeIds;
 83  0
     }
 84  
     public String getNodeType() {
 85  0
         return nodeType;
 86  
     }
 87  
     public void setNodeType(String nodeType) {
 88  0
         this.nodeType = nodeType;
 89  0
     }
 90  
     public Long[] getPreviousNodeIds() {
 91  0
         return previousNodeIds;
 92  
     }
 93  
     public void setPreviousNodeIds(Long[] previousNodeIds) {
 94  0
         this.previousNodeIds = previousNodeIds;
 95  0
     }
 96  
     public String getRouteMethodCode() {
 97  0
         return routeMethodCode;
 98  
     }
 99  
     public void setRouteMethodCode(String routeMethodCode) {
 100  0
         this.routeMethodCode = routeMethodCode;
 101  0
     }
 102  
     public String getRouteMethodName() {
 103  0
         return routeMethodName;
 104  
     }
 105  
     public void setRouteMethodName(String routeMethodName) {
 106  0
         this.routeMethodName = routeMethodName;
 107  0
     }
 108  
     public Long getRouteNodeId() {
 109  0
         return routeNodeId;
 110  
     }
 111  
     public void setRouteNodeId(Long routeNodeId) {
 112  0
         this.routeNodeId = routeNodeId;
 113  0
     }
 114  
     public String getRouteNodeName() {
 115  0
         return routeNodeName;
 116  
     }
 117  
     public void setRouteNodeName(String routeNodeName) {
 118  0
         this.routeNodeName = routeNodeName;
 119  0
     }
 120  
 
 121  
 }