javaee.module.backend.entities.person.AbstractPersonHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-javaee-module Show documentation
Show all versions of common-javaee-module Show documentation
This Module contains common JavaEE Helper Classes.
The newest version!
package javaee.module.backend.entities.person;
public abstract class AbstractPersonHelper< User > extends AbstractPersonHelperParent_2< User > {
public void setLastName( String lastName ) {
this.lastName = lastName;
}
public void setFirstName( String firstName ) {
this.firstName = firstName;
}
public void setMiddleName( String middleName ) {
this.middleName = middleName;
}
public void setPrimaryEmail( String primaryEmail ) {
this.primaryEmail = primaryEmail;
}
public void setSecondaryEmail( String secondaryEmail ) {
this.secondaryEmail = secondaryEmail;
}
public void setPrimaryContact( String primaryContact ) {
this.primaryContact = primaryContact;
}
public void setSecondaryContact( String secondaryContact ) {
this.secondaryContact = secondaryContact;
}
}