package sk.nociar.jpacloner.entities; import javax.persistence.Embeddable; @Embeddable public class Point { private int x; private int y; private Point() { } public Point(int x, int y) { this.x = x; this.y = y; } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } }