com.evasion.entity.geolocation.AddressDetails Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.entity.geolocation;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToOne;
/**
*
* @author sebastien.glon
*/
@Entity
public class AddressDetails implements Serializable{
/***
* serialVersionUID.
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Long id;
@OneToOne
private Country country;
@OneToOne
private AdministrativeArea administrativeArea;
@OneToOne
private Thoroughfare thoroughfare;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy