The following document contains the results of PMD's CPD 5.5.1.
File | Line |
---|---|
fr/paris/lutece/plugins/identitystore/modules/cnicertifier/business/OCRData.java | 59 |
fr/paris/lutece/plugins/identitystore/modules/cnicertifier/business/ValidatedData.java | 61 |
public String getFirstName( ) { return _strFirstName; } /** * Sets the FirstName * * @param strFirstName * The FirstName */ @JsonProperty( "first_name" ) public void setFirstName( String strFirstName ) { _strFirstName = strFirstName; } /** * Returns the LastName * * @return The LastName */ public String getLastName( ) { return _strLastName; } /** * Sets the LastName * * @param strLastName * The LastName */ @JsonProperty( "last_name" ) public void setLastName( String strLastName ) { _strLastName = strLastName; } /** * Returns the BirthDate * * @return The BirthDate */ public String getBirthDate( ) { return _strBirthDate; } /** * Sets the BirthDate * * @param strBirthDate * The BirthDate */ @JsonProperty( "birth_date" ) public void setBirthDate( String strBirthDate ) { _strBirthDate = strBirthDate; } /** * Returns the BirthPlace * * @return The BirthPlace */ public String getBirthPlace( ) { return _strBirthPlace; } /** * Sets the BirthPlace * * @param strBirthPlace * The BirthPlace */ @JsonProperty( "birth_place" ) public void setBirthPlace( String strBirthPlace ) { _strBirthPlace = strBirthPlace; } } |