Coverage Report - org.kuali.student.core.organization.ui.client.mvc.model.OrgPositionPersonRelationInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
OrgPositionPersonRelationInfo
0%
0/22
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.core.organization.ui.client.mvc.model;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.ArrayList;
 20  
 
 21  0
 public class OrgPositionPersonRelationInfo implements Serializable{
 22  
     private static final long serialVersionUID = 1L;
 23  
     private ArrayList<String> personId;
 24  
     private String orgId;
 25  
     private String title;
 26  
     private String orgPersonRelationTypeKey;
 27  
     private String desc;
 28  
     private String minNumRelations;
 29  
     private String maxNumRelations;
 30  
     
 31  
     public ArrayList<String> getPersonId(){
 32  0
         return this.personId;
 33  
     }
 34  
     
 35  
     public void setPersonId(ArrayList<String> personId){
 36  0
         this.personId=personId;
 37  0
     }
 38  
     
 39  
     public String getOrgId(){
 40  0
         return this.orgId;
 41  
     }
 42  
     
 43  
     public void setOrgId(String orgId){
 44  0
         this.orgId=orgId;
 45  0
     }
 46  
     
 47  
     public String getTitle(){
 48  0
         return this.title;
 49  
     }
 50  
     
 51  
     public void setTitle(String title){
 52  0
         this.title=title;
 53  0
     }
 54  
     
 55  
     public String getOrgPersonRelationTypeKey(){
 56  0
         return this.orgPersonRelationTypeKey;
 57  
     }
 58  
     
 59  
     public void setOrgPersonRelationTypeKey(String orgPersonRelationTypeKey){
 60  0
         this.orgPersonRelationTypeKey=orgPersonRelationTypeKey;
 61  0
     }
 62  
     
 63  
     public String getDesc(){
 64  0
         return this.desc;
 65  
     }
 66  
     
 67  
     public void setDesc(String desc){
 68  0
         this.desc=desc;
 69  0
     }
 70  
     
 71  
     public String getMinNumRelations(){
 72  0
         return this.minNumRelations;
 73  
     }
 74  
     
 75  
     public void setMinNumRelations(String minNumRelations){
 76  0
         this.minNumRelations=minNumRelations;
 77  0
     }
 78  
     
 79  
     public String getMaxNumRelations(){
 80  0
         return this.maxNumRelations;
 81  
     }
 82  
     
 83  
     public void setMaxNumRelations(String maxNumRelations){
 84  0
         this.maxNumRelations=maxNumRelations;
 85  0
     }
 86  
     
 87  
     
 88  
 }