Coverage Report - org.kuali.rice.kim.bo.entity.impl.KimEntityBioDemographicsImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
KimEntityBioDemographicsImpl
0%
0/74
0%
0/24
1.629
 
 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.Calendar;
 19  
 import java.util.Date;
 20  
 
 21  
 import javax.persistence.Column;
 22  
 import javax.persistence.Entity;
 23  
 import javax.persistence.Id;
 24  
 import javax.persistence.Table;
 25  
 import javax.persistence.Transient;
 26  
 
 27  
 import org.kuali.rice.kim.bo.entity.KimEntityBioDemographics;
 28  
 import org.kuali.rice.kim.bo.entity.KimEntityPrivacyPreferences;
 29  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 30  
 import org.kuali.rice.kim.util.KimConstants;
 31  
 import org.kuali.rice.kim.util.KualiDateMask;
 32  
 
 33  
 /**
 34  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 35  
  */
 36  
 @Entity
 37  
 @Table(name = "KRIM_ENTITY_BIO_T")
 38  0
 public class KimEntityBioDemographicsImpl extends KimEntityDataBase implements KimEntityBioDemographics {
 39  
 
 40  
         private static final long serialVersionUID = 6317317790920881093L;
 41  
 
 42  
         @Id
 43  
         @Column(name = "ENTITY_ID")
 44  
         protected String entityId;
 45  
 
 46  
         @Column(name = "BIRTH_DT")
 47  
         protected Date birthDate;
 48  
 
 49  
         @Column(name = "GNDR_CD")
 50  
         protected String genderCode;
 51  
 
 52  
         @Column(name = "DECEASED_DT")
 53  
         protected Date deceasedDate;
 54  
 
 55  
         @Column(name = "MARITAL_STATUS")
 56  
         protected String maritalStatusCode;
 57  
 
 58  
         @Column(name = "PRIM_LANG_CD")
 59  
         protected String primaryLanguageCode;
 60  
 
 61  
         @Column(name = "SEC_LANG_CD")
 62  
         protected String secondaryLanguageCode;
 63  
 
 64  
         @Column(name = "BIRTH_CNTRY_CD")
 65  
         protected String countryOfBirthCode;
 66  
 
 67  
         @Column(name = "BIRTH_STATE_CD")
 68  
         protected String birthStateCode;
 69  
 
 70  
         @Column(name = "BIRTH_CITY")
 71  
         protected String cityOfBirth;
 72  
 
 73  
         @Column(name = "GEO_ORIGIN")
 74  
         protected String geographicOrigin;
 75  
 
 76  
         @Transient
 77  
         protected Boolean suppressPersonal;
 78  
         
 79  
         /**
 80  
          * @return the birthDate
 81  
          */
 82  
         public Date getBirthDate() {
 83  
                 
 84  0
             if (isSuppressPersonal()) {
 85  0
             return KualiDateMask.getInstance();
 86  
         }
 87  0
                 return this.birthDate;
 88  
         }
 89  
         
 90  
         /**
 91  
          * This overridden method ...
 92  
          * 
 93  
          * @see org.kuali.rice.kim.bo.entity.KimEntityBioDemographics#getBirthDateUnmasked()
 94  
          */
 95  
         public Date getBirthDateUnmasked() {
 96  0
                 return this.birthDate;
 97  
         }
 98  
 
 99  
         /**
 100  
          * @return the deceasedDate
 101  
          */
 102  
         public Date getDeceasedDate() {
 103  0
                 return this.deceasedDate;
 104  
         }
 105  
 
 106  
         /**
 107  
          * @return the maritalStatusCode
 108  
          */
 109  
         public String getMaritalStatusCode() {
 110  0
             if (isSuppressPersonal()) {
 111  0
             return KimConstants.RESTRICTED_DATA_MASK;
 112  
         }
 113  0
                 return this.maritalStatusCode;
 114  
         }
 115  
 
 116  
         /**
 117  
          * @return the primaryLanguageCode
 118  
          */
 119  
         public String getPrimaryLanguageCode() {
 120  0
             if (isSuppressPersonal()) {
 121  0
             return KimConstants.RESTRICTED_DATA_MASK;
 122  
         }
 123  0
                 return this.primaryLanguageCode;
 124  
         }
 125  
 
 126  
         /**
 127  
          * @return the secondaryLanguageCode
 128  
          */
 129  
         public String getSecondaryLanguageCode() {
 130  0
             if (isSuppressPersonal()) {
 131  0
             return KimConstants.RESTRICTED_DATA_MASK;
 132  
         }
 133  0
                 return this.secondaryLanguageCode;
 134  
         }
 135  
 
 136  
         /**
 137  
          * @return the countryOfBirthCode
 138  
          */
 139  
         public String getCountryOfBirthCode() {
 140  0
             if (isSuppressPersonal()) {
 141  0
             return KimConstants.RESTRICTED_DATA_MASK;
 142  
         }
 143  0
                 return this.countryOfBirthCode;
 144  
         }
 145  
 
 146  
         /**
 147  
          * @return the birthStateCode
 148  
          */
 149  
         public String getBirthStateCode() {
 150  0
             if (isSuppressPersonal()) {
 151  0
             return KimConstants.RESTRICTED_DATA_MASK;
 152  
         }
 153  0
                 return this.birthStateCode;
 154  
         }
 155  
 
 156  
         /**
 157  
          * @return the cityOfBirth
 158  
          */
 159  
         public String getCityOfBirth() {
 160  0
             if (isSuppressPersonal()) {
 161  0
             return KimConstants.RESTRICTED_DATA_MASK;
 162  
         }
 163  0
                 return this.cityOfBirth;
 164  
         }
 165  
 
 166  
         /**
 167  
          * @return the geographicOrigin
 168  
          */
 169  
         public String getGeographicOrigin() {
 170  0
             if (isSuppressPersonal()) {
 171  0
             return KimConstants.RESTRICTED_DATA_MASK;
 172  
         }
 173  0
                 return this.geographicOrigin;
 174  
         }
 175  
 
 176  
         /**
 177  
          * @return the maritalStatusCode
 178  
          */
 179  
         public String getMaritalStatusCodeUnmasked() {
 180  0
                 return this.maritalStatusCode;
 181  
         }
 182  
 
 183  
         /**
 184  
          * @return the primaryLanguageCode
 185  
          */
 186  
         public String getPrimaryLanguageCodeUnmasked() {
 187  0
                 return this.primaryLanguageCode;
 188  
         }
 189  
 
 190  
         /**
 191  
          * @return the secondaryLanguageCode
 192  
          */
 193  
         public String getSecondaryLanguageCodeUnmasked() {
 194  0
                 return this.secondaryLanguageCode;
 195  
         }
 196  
 
 197  
         /**
 198  
          * @return the countryOfBirthCode
 199  
          */
 200  
         public String getCountryOfBirthCodeUnmasked() {
 201  0
                 return this.countryOfBirthCode;
 202  
         }
 203  
 
 204  
         /**
 205  
          * @return the birthStateCode
 206  
          */
 207  
         public String getBirthStateCodeUnmasked() {
 208  0
                 return this.birthStateCode;
 209  
         }
 210  
 
 211  
         /**
 212  
          * @return the cityOfBirth
 213  
          */
 214  
         public String getCityOfBirthUnmasked() {
 215  0
                 return this.cityOfBirth;
 216  
         }
 217  
 
 218  
         /**
 219  
          * @return the geographicOrigin
 220  
          */
 221  
         public String getGeographicOriginUnmasked() {
 222  0
                 return this.geographicOrigin;
 223  
         }
 224  
 
 225  
         /**
 226  
          * @param birthDate the birthDate to set
 227  
          */
 228  
         public void setBirthDate(Date birthDate) {
 229  0
                 this.birthDate = birthDate;
 230  0
         }
 231  
 
 232  
         /**
 233  
          * @param deceasedDate the deceasedDate to set
 234  
          */
 235  
         public void setDeceasedDate(Date deceasedDate) {
 236  0
                 this.deceasedDate = deceasedDate;
 237  0
         }
 238  
 
 239  
         /**
 240  
          * @param maritalStatusCode the maritalStatusCode to set
 241  
          */
 242  
         public void setMaritalStatusCode(String maritalStatusCode) {
 243  0
                 this.maritalStatusCode = maritalStatusCode;
 244  0
         }
 245  
 
 246  
         /**
 247  
          * @param primaryLanguageCode the primaryLanguageCode to set
 248  
          */
 249  
         public void setPrimaryLanguageCode(String primaryLanguageCode) {
 250  0
                 this.primaryLanguageCode = primaryLanguageCode;
 251  0
         }
 252  
 
 253  
         /**
 254  
          * @param secondaryLanguageCode the secondaryLanguageCode to set
 255  
          */
 256  
         public void setSecondaryLanguageCode(String secondaryLanguageCode) {
 257  0
                 this.secondaryLanguageCode = secondaryLanguageCode;
 258  0
         }
 259  
 
 260  
         /**
 261  
          * @param countryOfBirthCode the countryOfBirthCode to set
 262  
          */
 263  
         public void setCountryOfBirthCode(String countryOfBirthCode) {
 264  0
                 this.countryOfBirthCode = countryOfBirthCode;
 265  0
         }
 266  
 
 267  
         /**
 268  
          * @param birthStateCode the birthStateCode to set
 269  
          */
 270  
         public void setBirthStateCode(String birthStateCode) {
 271  0
                 this.birthStateCode = birthStateCode;
 272  0
         }
 273  
 
 274  
         /**
 275  
          * @param cityOfBirth the cityOfBirth to set
 276  
          */
 277  
         public void setCityOfBirth(String cityOfBirth) {
 278  0
                 this.cityOfBirth = cityOfBirth;
 279  0
         }
 280  
 
 281  
         /**
 282  
          * @param geographicOrigin the geographicOrigin to set
 283  
          */
 284  
         public void setGeographicOrigin(String geographicOrigin) {
 285  0
                 this.geographicOrigin = geographicOrigin;
 286  0
         }
 287  
 
 288  
         /**
 289  
          * @return the entityId
 290  
          */
 291  
         public String getEntityId() {
 292  0
                 return this.entityId;
 293  
         }
 294  
 
 295  
         /**
 296  
          * @param entityId the entityId to set
 297  
          */
 298  
         public void setEntityId(String entityId) {
 299  0
                 this.entityId = entityId;
 300  0
         }
 301  
 
 302  
         /**
 303  
          * @see org.kuali.rice.kim.bo.entity.KimEntityBioDemographics#getGenderCode()
 304  
          */
 305  
         public String getGenderCode() {
 306  0
             if (isSuppressPersonal()) {
 307  0
             return KimConstants.RESTRICTED_DATA_MASK;
 308  
         }
 309  0
                 return genderCode;
 310  
         }
 311  
 
 312  
     /**
 313  
      * @see org.kuali.rice.kim.bo.entity.KimEntityBioDemographics#getGenderCodeUnmasked()
 314  
      */
 315  
     public String getGenderCodeUnmasked() {
 316  0
         return this.genderCode;
 317  
     }
 318  
 
 319  
         public void setGenderCode(String genderCode) {
 320  0
                 this.genderCode = genderCode;
 321  0
         }
 322  
 
 323  
         /**
 324  
          * @return the suppressPersonal
 325  
          */
 326  
         public Boolean getSuppressPersonal() {
 327  0
                 return this.suppressPersonal;
 328  
         }
 329  
 
 330  
         /**
 331  
          * @param suppressPersonal the suppressPersonal to set
 332  
          */
 333  
         public void setSuppressPersonal(Boolean suppressPersonal) {
 334  0
                 this.suppressPersonal = suppressPersonal;
 335  0
         }
 336  
 
 337  
     public boolean isSuppressPersonal() {
 338  0
         if (suppressPersonal != null) {
 339  0
             return suppressPersonal.booleanValue();
 340  
         }
 341  0
         KimEntityPrivacyPreferences privacy = KIMServiceLocator.getIdentityService().getEntityPrivacyPreferences(getEntityId());
 342  
 
 343  0
         suppressPersonal = false;
 344  0
         if (privacy != null) {
 345  0
             suppressPersonal = privacy.isSuppressPersonal();
 346  
         } 
 347  0
         return suppressPersonal.booleanValue();
 348  
     }
 349  
 
 350  
     //mask date to "0001-01-01"
 351  
     private Date dateMask(){
 352  
 
 353  0
             Calendar calendar = Calendar.getInstance();
 354  0
             calendar.set(calendar.getMinimum(Calendar.YEAR), 
 355  
                             calendar.getMinimum(Calendar.MONTH ), 
 356  
                             calendar.getMinimum(Calendar.DATE));
 357  
         
 358  0
             return (calendar != null ? new java.sql.Date(calendar.getTime().getTime()) : null);
 359  
     }
 360  
 }