mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-12 22:24:47 +00:00
git-svn-id: https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_2@11760 1b8cb986-b30d-0410-93ca-fae66ebed9b2
18 lines
206 B
Java
18 lines
206 B
Java
//$Id$
|
|
package org.hibernate.auction;
|
|
|
|
/**
|
|
* @author Gavin King
|
|
*/
|
|
public class Persistent {
|
|
private Long id;
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long long1) {
|
|
id = long1;
|
|
}
|
|
|
|
}
|