io.github.rongaru.javaee.backend.dto.AbstractPersonalAddressHelperDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee Show documentation
Show all versions of javaee Show documentation
Java Classes For JavaEE JSF.
The newest version!
package io.github.rongaru.javaee.backend.dto;
public abstract class AbstractPersonalAddressHelperDto< UserDto > extends AbstractPersonalDetailHelperDto< UserDto > {
private String permanentStreet;
private String temporaryStreet;
private String permanentCountry;
private String temporaryCountry;
private String permanentDistrict;
private String temporaryDistrict;
public String getPermanentStreet( ) {
return permanentStreet;
}
public void setPermanentStreet( String permanentStreet ) {
this.permanentStreet = permanentStreet;
}
public String getTemporaryStreet( ) {
return temporaryStreet;
}
public void setTemporaryStreet( String temporaryStreet ) {
this.temporaryStreet = temporaryStreet;
}
public String getPermanentCountry( ) {
return permanentCountry;
}
public void setPermanentCountry( String permanentCountry ) {
this.permanentCountry = permanentCountry;
}
public String getTemporaryCountry( ) {
return temporaryCountry;
}
public void setTemporaryCountry( String temporaryCountry ) {
this.temporaryCountry = temporaryCountry;
}
public String getPermanentDistrict( ) {
return permanentDistrict;
}
public void setPermanentDistrict( String permanentDistrict ) {
this.permanentDistrict = permanentDistrict;
}
public String getTemporaryDistrict( ) {
return temporaryDistrict;
}
public void setTemporaryDistrict( String temporaryDistrict ) {
this.temporaryDistrict = temporaryDistrict;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy