All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javaee.module.backend.entities.person.address.AbstractPersonalAddressHelper Maven / Gradle / Ivy

The newest version!
package javaee.module.backend.entities.person.address;

public abstract class AbstractPersonalAddressHelper< User > extends AbstractPersonalAddressHelperParent_2< User > {

	public void setPermanentDistrict( String permanentDistrict ) {
		this.permanentDistrict = permanentDistrict;
	}

	public void setTemporaryDistrict( String temporaryDistrict ) {
		this.temporaryDistrict = temporaryDistrict;
	}

	public void setPermanentCountry( String permanentCountry ) {
		this.permanentCountry = permanentCountry;
	}

	public void setTemporaryCountry( String temporaryCountry ) {
		this.temporaryCountry = temporaryCountry;
	}

	public void setPermanentStreet( String permanentStreet ) {
		this.permanentStreet = permanentStreet;
	}

	public void setTemporaryStreet( String temporaryStreet ) {
		this.temporaryStreet = temporaryStreet;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy