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

example.domain.Pet Maven / Gradle / Ivy

The newest version!
package example.domain;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.ManyToOne;

@Entity
public class Pet {

    @Id
    @GeneratedValue
    private Long id;
    private String name;
    @ManyToOne
    private Owner owner;
    private PetType type = PetType.DOG;

    public PetType getType() {
        return type;
    }

    public Owner getOwner() {
        return owner;
    }

    public void setOwner(Owner owner) {
        this.owner = owner;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public void setType(PetType type) {
		this.type = type;
	}

    public enum PetType {
        DOG,
        CAT
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy