Created
June 27, 2016 01:54
-
-
Save hseritt/8a2eb3c6ad4fdb26428e18d88088fe9d to your computer and use it in GitHub Desktop.
Jpa Table and Model (unique constraints)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.persistence.Column; | |
import javax.persistence.Entity; | |
import javax.persistence.GeneratedValue; | |
import javax.persistence.GenerationType; | |
import javax.persistence.Id; | |
import javax.persistence.Table; | |
import javax.persistence.UniqueConstraint; | |
@Entity | |
@Table(name="Agent", uniqueConstraints={@UniqueConstraint(columnNames={"name"})}) | |
public class Agent { | |
@Id | |
@GeneratedValue(strategy=GenerationType.AUTO) | |
private Long id; | |
@Column(name="name") | |
private String name; | |
@Column(name="description") | |
private String description; | |
@Column(name="class_name") | |
private String className; | |
@Column(name="active") | |
private boolean active; | |
public boolean isActive() { | |
return active; | |
} | |
public void setActive(boolean active) { | |
this.active = active; | |
} | |
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 String getDescription() { | |
return description; | |
} | |
public void setDescription(String description) { | |
this.description = description; | |
} | |
public String getClassName() { | |
return className; | |
} | |
public void setClassName(String className) { | |
this.className = className; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment