Coverage Report - org.kuali.student.core.organization.ui.client.mvc.model.MembershipInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
MembershipInfo
0%
0/28
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  
 
 20  0
 public class MembershipInfo implements Serializable{
 21  
     private static final long serialVersionUID = 1L;
 22  
     private String positionTypeKey;
 23  
     private String positionName;
 24  
     private String entityNameId ;
 25  
     private String nameTypeCode;
 26  
     private String firstName ;
 27  
     private String middleName;
 28  
     private String lastName ;
 29  
     private String title ;
 30  
     private String suffix;
 31  
     
 32  
     public String getPositionTypeKey() {
 33  0
         return positionTypeKey;
 34  
     }
 35  
     public void setPositionTypeKey(String positionTypeKey) {
 36  0
         this.positionTypeKey = positionTypeKey;
 37  0
     }
 38  
     public String getPositionName() {
 39  0
         return positionName;
 40  
     }
 41  
     public void setPositionName(String positionName) {
 42  0
         this.positionName = positionName;
 43  0
     }
 44  
     public String getEntityNameId() {
 45  0
         return entityNameId;
 46  
     }
 47  
     public void setEntityNameId(String entityNameId) {
 48  0
         this.entityNameId = entityNameId;
 49  0
     }
 50  
     public String getNameTypeCode() {
 51  0
         return nameTypeCode;
 52  
     }
 53  
     public void setNameTypeCode(String nameTypeCode) {
 54  0
         this.nameTypeCode = nameTypeCode;
 55  0
     }
 56  
     public String getFirstName() {
 57  0
         return firstName;
 58  
     }
 59  
     public void setFirstName(String firstName) {
 60  0
         this.firstName = firstName;
 61  0
     }
 62  
     public String getMiddleName() {
 63  0
         return middleName;
 64  
     }
 65  
     public void setMiddleName(String middleName) {
 66  0
         this.middleName = middleName;
 67  0
     }
 68  
     public String getLastName() {
 69  0
         return lastName;
 70  
     }
 71  
     public void setLastName(String lastName) {
 72  0
         this.lastName = lastName;
 73  0
     }
 74  
     public String getTitle() {
 75  0
         return title;
 76  
     }
 77  
     public void setTitle(String title) {
 78  0
         this.title = title;
 79  0
     }
 80  
     public String getSuffix() {
 81  0
         return suffix;
 82  
     }
 83  
     public void setSuffix(String suffix) {
 84  0
         this.suffix = suffix;
 85  0
     }
 86  
 }