|
Hibernate example source code file (Bug.java)
The Hibernate Bug.java source codepackage org.hibernate.test.annotations.collectionelement;
import javax.persistence.Embeddable;
@Embeddable
public class Bug {
private String description;
private Person reportedBy;
private String summary;
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public Person getReportedBy() {
return reportedBy;
}
public void setReportedBy(Person reportedBy) {
this.reportedBy = reportedBy;
}
public String getDescription(){
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Bug.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.