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

io.github.rongaru.javaee.backend.dto.AbstractPersonalAddressHelperDto Maven / Gradle / Ivy

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