Coverage Report - org.kuali.rice.kim.bo.ui.PersonDocumentEmploymentInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
PersonDocumentEmploymentInfo
0%
0/39
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-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.kim.bo.ui;
 17  
 
 18  
 import org.hibernate.annotations.*;
 19  
 import org.hibernate.annotations.Parameter;
 20  
 import org.kuali.rice.core.util.type.KualiDecimal;
 21  
 import org.kuali.rice.kim.bo.reference.EmploymentStatus;
 22  
 import org.kuali.rice.kim.bo.reference.EmploymentType;
 23  
 import org.kuali.rice.kim.bo.reference.impl.EmploymentStatusImpl;
 24  
 import org.kuali.rice.kim.bo.reference.impl.EmploymentTypeImpl;
 25  
 
 26  
 import javax.persistence.*;
 27  
 import javax.persistence.Entity;
 28  
 import javax.persistence.Table;
 29  
 
 30  
 /**
 31  
  * This is a description of what this class does - shyu don't forget to fill this in. 
 32  
  * 
 33  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 34  
  *
 35  
  */
 36  
 @IdClass(PersonDocumentEmploymentInfoId.class)
 37  
 @Entity
 38  
 @Table(name = "KRIM_PND_EMP_INFO_MT")
 39  
 public class PersonDocumentEmploymentInfo extends KimDocumentBoActivatableEditableBase {
 40  
         @Id
 41  
         @GeneratedValue(generator="KRIM_ENTITY_EMP_ID_S")
 42  
         @GenericGenerator(name="KRIM_ENTITY_EMP_ID_S",strategy="org.kuali.rice.core.jpa.spring.RiceNumericStringSequenceStyleGenerator",parameters={
 43  
                         @Parameter(name="sequence_name",value="KRIM_ENTITY_EMP_ID_S"),
 44  
                         @Parameter(name="value_column",value="id")
 45  
                 })
 46  
         @Column(name = "ENTITY_EMP_ID")
 47  
         protected String entityEmploymentId;
 48  
 
 49  
         @Column(name = "ENTITY_AFLTN_ID")
 50  
         protected String entityAffiliationId;
 51  
 
 52  
         @Column(name = "EMP_STAT_CD")
 53  
         protected String employmentStatusCode;
 54  
 
 55  
         @Column(name = "EMP_TYP_CD")
 56  
         protected String employmentTypeCode;
 57  
 
 58  
         @Column(name = "PRMRY_DEPT_CD")
 59  
         protected String primaryDepartmentCode;
 60  
         
 61  
         @Column(name = "BASE_SLRY_AMT")
 62  
         protected KualiDecimal baseSalaryAmount;
 63  
         @Column(name = "EMP_ID")
 64  
         protected String employeeId;
 65  
 
 66  
         @Column(name = "EMP_REC_ID")
 67  
         protected String employmentRecordId;
 68  
 
 69  
         @Type(type="yes_no")
 70  
         @Column(name="PRMRY_IND")
 71  
         protected boolean primary;
 72  
 
 73  
         @ManyToOne(targetEntity=EmploymentTypeImpl.class, fetch = FetchType.EAGER, cascade = {})
 74  
         @JoinColumn(name = "EMP_TYP_CD", insertable = false, updatable = false)
 75  
         protected EmploymentType employmentType;
 76  
 
 77  
         @ManyToOne(targetEntity=EmploymentStatusImpl.class, fetch = FetchType.EAGER, cascade = {})
 78  
         @Fetch(value = FetchMode.SELECT)
 79  
         @JoinColumn(name = "EMP_STAT_CD", insertable = false, updatable = false)
 80  
         protected EmploymentStatus employmentStatus;
 81  
         @Transient
 82  
         protected PersonDocumentAffiliation affiliation;
 83  
         
 84  0
         public PersonDocumentEmploymentInfo() {
 85  0
                 this.active = true;
 86  0
         }
 87  
 
 88  
         /**
 89  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#getBaseSalaryAmount()
 90  
          */
 91  
         public KualiDecimal getBaseSalaryAmount() {
 92  0
                 return baseSalaryAmount;
 93  
         }
 94  
 
 95  
         /**
 96  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#getEmployeeStatusCode()
 97  
          */
 98  
         public String getEmploymentStatusCode() {
 99  0
                 return employmentStatusCode;
 100  
         }
 101  
 
 102  
         /**
 103  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#getEmploymentTypeCode()
 104  
          */
 105  
         public String getEmploymentTypeCode() {
 106  0
                 return employmentTypeCode;
 107  
         }
 108  
 
 109  
         /**
 110  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#getEntityAffiliationId()
 111  
          */
 112  
         public String getEntityAffiliationId() {
 113  0
                 return entityAffiliationId;
 114  
         }
 115  
 
 116  
         /**
 117  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#getEntityEmploymentId()
 118  
          */
 119  
         public String getEntityEmploymentId() {
 120  0
                 return entityEmploymentId;
 121  
         }
 122  
 
 123  
         /**
 124  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#isPrimary()
 125  
          */
 126  
         public boolean isPrimary() {
 127  0
                 return primary;
 128  
         }
 129  
 
 130  
         /**
 131  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#setAffiliationId(java.lang.String)
 132  
          */
 133  
         public void setEntityAffiliationId(String entityAffiliationId) {
 134  0
                 this.entityAffiliationId = entityAffiliationId;
 135  0
         }
 136  
 
 137  
         /**
 138  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#setBaseSalaryAmount(java.math.BigDecimal)
 139  
          */
 140  
         public void setBaseSalaryAmount(KualiDecimal baseSalaryAmount) {
 141  0
                 this.baseSalaryAmount = baseSalaryAmount;
 142  0
         }
 143  
 
 144  
         /**
 145  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#setEmployeeStatusCode(java.lang.String)
 146  
          */
 147  
         public void setEmploymentStatusCode(String employmentStatusCode) {
 148  0
                 this.employmentStatusCode = employmentStatusCode;
 149  0
         }
 150  
 
 151  
         /**
 152  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#setEmploymentTypeCode(java.lang.String)
 153  
          */
 154  
         public void setEmploymentTypeCode(String employmentTypeCode) {
 155  0
                 this.employmentTypeCode = employmentTypeCode;
 156  0
         }
 157  
 
 158  
         /**
 159  
          * @see org.kuali.rice.kim.bo.entity.KimEntityEmploymentInformation#setPrimary(boolean)
 160  
          */
 161  
         public void setPrimary(boolean primary) {
 162  0
                 this.primary = primary;
 163  0
         }
 164  
 
 165  
         public void setEntityEmploymentId(String entityEmploymentId) {
 166  0
                 this.entityEmploymentId = entityEmploymentId;
 167  0
         }
 168  
 
 169  
         public EmploymentType getEmploymentType() {
 170  0
                 return this.employmentType;
 171  
         }
 172  
 
 173  
         public void setEmploymentType(EmploymentType employmentType) {
 174  0
                 this.employmentType = employmentType;
 175  0
         }
 176  
 
 177  
         public EmploymentStatus getEmploymentStatus() {
 178  0
                 return this.employmentStatus;
 179  
         }
 180  
 
 181  
         public void setEmploymentStatus(EmploymentStatus employmentStatus) {
 182  0
                 this.employmentStatus = employmentStatus;
 183  0
         }
 184  
 
 185  
         public String getPrimaryDepartmentCode() {
 186  0
                 return this.primaryDepartmentCode;
 187  
         }
 188  
 
 189  
         public void setPrimaryDepartmentCode(String primaryDepartmentCode) {
 190  0
                 this.primaryDepartmentCode = primaryDepartmentCode;
 191  0
         }
 192  
 
 193  
         public PersonDocumentAffiliation getAffiliation() {
 194  0
                 return this.affiliation;
 195  
         }
 196  
 
 197  
         public void setAffiliation(PersonDocumentAffiliation affiliation) {
 198  0
                 this.affiliation = affiliation;
 199  0
         }
 200  
 
 201  
         public String getEmployeeId() {
 202  0
                 return this.employeeId;
 203  
         }
 204  
 
 205  
         public void setEmployeeId(String employeeId) {
 206  0
                 this.employeeId = employeeId;
 207  0
         }
 208  
 
 209  
         public String getEmploymentRecordId() {
 210  0
                 return this.employmentRecordId;
 211  
         }
 212  
 
 213  
         public void setEmploymentRecordId(String employmentRecordId) {
 214  0
                 this.employmentRecordId = employmentRecordId;
 215  0
         }
 216  
 
 217  
 }