Coverage Report - org.kuali.rice.kim.api.identity.personal.EntityBioDemographicsContract
 
Classes in this File Line Coverage Branch Coverage Complexity
EntityBioDemographicsContract
N/A
N/A
1
 
 1  
 package org.kuali.rice.kim.api.identity.personal;
 2  
 
 3  
 import org.joda.time.DateTime;
 4  
 import org.kuali.rice.core.api.mo.common.GloballyUnique;
 5  
 import org.kuali.rice.core.api.mo.common.Versioned;
 6  
 
 7  
 import java.util.Date;
 8  
 
 9  
 
 10  
 public interface EntityBioDemographicsContract extends Versioned, GloballyUnique {
 11  
     /**
 12  
      * Gets this {@link EntityBioDemographicsContract}'s identity id.
 13  
      * @return the identity id for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 14  
      */
 15  
         String getEntityId();
 16  
 
 17  
         /**
 18  
      * Gets this {@link EntityBioDemographicsContract}'s deceased date.
 19  
      * @return the deceased date for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 20  
      */
 21  
         String getDeceasedDate();
 22  
 
 23  
         /**
 24  
      * Gets this {@link EntityBioDemographicsContract}'s birth date.
 25  
      * @return the birth date for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 26  
      */
 27  
         String getBirthDate();
 28  
 
 29  
         /**
 30  
      * Gets this {@link EntityBioDemographicsContract}'s gender code.
 31  
      * @return the gender code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 32  
      */
 33  
         String getGenderCode();
 34  
 
 35  
         /**
 36  
      * Gets this {@link EntityBioDemographicsContract}'s marital status code.
 37  
      * @return the marital status code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 38  
      */
 39  
         String getMaritalStatusCode();
 40  
 
 41  
         /**
 42  
      * Gets this {@link EntityBioDemographicsContract}'s primary language code.
 43  
      * @return the primary language code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 44  
      */
 45  
         String getPrimaryLanguageCode();
 46  
 
 47  
         /**
 48  
      * Gets this {@link EntityBioDemographicsContract}'s secondary language code.
 49  
      * @return the secondary language code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 50  
      */
 51  
         String getSecondaryLanguageCode();
 52  
 
 53  
         /**
 54  
      * Gets this {@link EntityBioDemographicsContract}'s country of birth code.
 55  
      * @return the country of birth code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 56  
      */
 57  
         String getCountryOfBirthCode();
 58  
 
 59  
         /**
 60  
      * Gets this {@link EntityBioDemographicsContract}'s birth state code.
 61  
      * @return the birth state code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 62  
      */
 63  
         String getBirthStateCode();
 64  
 
 65  
         /**
 66  
      * Gets this {@link EntityBioDemographicsContract}'s city of birth.
 67  
      * @return the city of birth for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 68  
      */
 69  
         String getCityOfBirth();
 70  
 
 71  
         /**
 72  
      * Gets this {@link EntityBioDemographicsContract}'s geographic origin.
 73  
      * @return the geographic origin for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 74  
      */
 75  
         String getGeographicOrigin();
 76  
 
 77  
         /**
 78  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked birth date.
 79  
      * @return the unmasked birth date for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 80  
      */
 81  
         String getBirthDateUnmasked();
 82  
 
 83  
         /**
 84  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked gender code.
 85  
      * @return the unmasked gender code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 86  
      */
 87  
         String getGenderCodeUnmasked();
 88  
 
 89  
         /**
 90  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked martial status code.
 91  
      * @return the unmasked martial status code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 92  
      */
 93  
         String getMaritalStatusCodeUnmasked();
 94  
 
 95  
         /**
 96  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked primary language code.
 97  
      * @return the unmasked primary language code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 98  
      */
 99  
         String getPrimaryLanguageCodeUnmasked();
 100  
 
 101  
         /**
 102  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked secondary language code.
 103  
      * @return the unmasked secondary language code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 104  
      */
 105  
         String getSecondaryLanguageCodeUnmasked();
 106  
 
 107  
         /**
 108  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked country of birth code.
 109  
      * @return the unmasked country of birth code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 110  
      */
 111  
         String getCountryOfBirthCodeUnmasked();
 112  
 
 113  
         /**
 114  
      * Gets this {@link EntityBioDemographicsContract}'s unmaksed birth state code.
 115  
      * @return the unmaksed birth state code for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 116  
      */
 117  
         String getBirthStateCodeUnmasked();
 118  
 
 119  
         /**
 120  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked city of birth.
 121  
      * @return the unmasked city of birth for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 122  
      */
 123  
         String getCityOfBirthUnmasked();
 124  
 
 125  
         /**
 126  
      * Gets this {@link EntityBioDemographicsContract}'s unmasked geographic origin.
 127  
      * @return the unmasked geographic origin for this {@link EntityBioDemographicsContract}, or null if none has been assigned.
 128  
      */
 129  
         String getGeographicOriginUnmasked();
 130  
 
 131  
     /**
 132  
      * Returns a boolean value that determines if personal fields should be suppressed.
 133  
      * @return boolean value that determines if personal fields should be suppressed.
 134  
      */
 135  
         boolean isSuppressPersonal();
 136  
 }