Coverage Report - org.kuali.rice.kim.bo.entity.impl.KimEntityCitizenshipImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
KimEntityCitizenshipImpl
0%
0/29
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 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.kim.bo.entity.impl;
 17  
 
 18  
 import java.util.Date;
 19  
 import java.util.LinkedHashMap;
 20  
 
 21  
 import javax.persistence.Column;
 22  
 import javax.persistence.Entity;
 23  
 import javax.persistence.FetchType;
 24  
 import javax.persistence.Id;
 25  
 import javax.persistence.JoinColumn;
 26  
 import javax.persistence.ManyToOne;
 27  
 import javax.persistence.Table;
 28  
 
 29  
 import org.kuali.rice.kim.bo.entity.KimEntityCitizenship;
 30  
 import org.kuali.rice.kim.bo.reference.CitizenshipStatus;
 31  
 import org.kuali.rice.kim.bo.reference.impl.CitizenshipStatusImpl;
 32  
 
 33  
 /**
 34  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 35  
  */
 36  
 @Entity
 37  
 @Table(name = "KRIM_ENTITY_CTZNSHP_T")
 38  0
 public class KimEntityCitizenshipImpl extends KimInactivatableEntityDataBase implements KimEntityCitizenship {
 39  
 
 40  
         private static final long serialVersionUID = 1L;
 41  
 
 42  
         @Id
 43  
         @Column(name = "ENTITY_CTZNSHP_ID")
 44  
         protected String entityCitizenshipId;
 45  
         
 46  
         @Column(name = "ENTITY_ID")
 47  
         protected String entityId;
 48  
         
 49  
         @Column(name = "POSTAL_CNTRY_CD")
 50  
         protected String countryCode;
 51  
 
 52  
         @Column(name = "CTZNSHP_STAT_CD")
 53  
         protected String citizenshipStatusCode;
 54  
 
 55  
         @Column(name = "strt_dt")
 56  
         protected Date startDate;
 57  
 
 58  
         @Column(name = "end_dt")
 59  
         protected Date endDate;
 60  
 
 61  
         @ManyToOne(targetEntity=CitizenshipStatusImpl.class, fetch = FetchType.EAGER, cascade = {})
 62  
         @JoinColumn(name = "CTZNSHP_STAT_CD", insertable = false, updatable = false)
 63  
         protected CitizenshipStatus citizenshipType;
 64  
 
 65  
         // Waiting until we pull in from KFS
 66  
         // protected Country country;
 67  
         
 68  
         /**
 69  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#getCitizenshipStatusCode()
 70  
          */
 71  
         public String getCitizenshipStatusCode() {
 72  0
                 return citizenshipStatusCode;
 73  
         }
 74  
 
 75  
         /**
 76  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#getEndDate()
 77  
          */
 78  
         public Date getEndDate() {
 79  0
                 return endDate;
 80  
         }
 81  
 
 82  
         /**
 83  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#getEntityCitizenshipId()
 84  
          */
 85  
         public String getEntityCitizenshipId() {
 86  0
                 return entityCitizenshipId;
 87  
         }
 88  
 
 89  
         /**
 90  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#getStartDate()
 91  
          */
 92  
         public Date getStartDate() {
 93  0
                 return startDate;
 94  
         }
 95  
 
 96  
         /**
 97  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#setCitizenshipStatusCode(java.lang.String)
 98  
          */
 99  
         public void setCitizenshipStatusCode(String citizenshipStatusCode) {
 100  0
                 this.citizenshipStatusCode = citizenshipStatusCode;
 101  0
         }
 102  
 
 103  
         /**
 104  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#setEndDate(java.util.Date)
 105  
          */
 106  
         public void setEndDate(Date endDate) {
 107  0
                 this.endDate = endDate;
 108  0
         }
 109  
 
 110  
         /**
 111  
          * @see org.kuali.rice.kim.bo.entity.KimEntityCitizenship#startDate(java.util.Date)
 112  
          */
 113  
         public void setStartDate(Date startDate) {
 114  0
                 this.startDate = startDate;
 115  0
         }
 116  
 
 117  
         /**
 118  
          * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper()
 119  
          */
 120  
         @Override
 121  
         protected LinkedHashMap toStringMapper() {
 122  0
                 LinkedHashMap m = new LinkedHashMap();
 123  0
                 m.put( "entityCitizenshipId", entityCitizenshipId );
 124  0
                 m.put( "countryCode", countryCode );
 125  0
                 m.put( "citizenshipStatusCode", citizenshipStatusCode );
 126  0
                 m.put( "startDate", startDate );
 127  0
                 m.put( "endDate", endDate );
 128  0
                 return m;
 129  
         }
 130  
 
 131  
         public String getEntityId() {
 132  0
                 return this.entityId;
 133  
         }
 134  
 
 135  
         public void setEntityId(String entityId) {
 136  0
                 this.entityId = entityId;
 137  0
         }
 138  
 
 139  
         public String getCountryCode() {
 140  0
                 return this.countryCode;
 141  
         }
 142  
 
 143  
         public void setCountryCode(String countryCode) {
 144  0
                 this.countryCode = countryCode;
 145  0
         }
 146  
 
 147  
         public CitizenshipStatus getCitizenshipType() {
 148  0
                 return this.citizenshipType;
 149  
         }
 150  
 
 151  
         public void setCitizenshipType(CitizenshipStatus citizenshipType) {
 152  0
                 this.citizenshipType = citizenshipType;
 153  0
         }
 154  
 
 155  
         public void setEntityCitizenshipId(String entityCitizenshipId) {
 156  0
                 this.entityCitizenshipId = entityCitizenshipId;
 157  0
         }
 158  
 
 159  
 }