blob: 9febf312de7eacbdd506215b4f9e410c1ce30357 [file] [log] [blame]
package org.codehaus.gram.base;
/**
* @version $Revision$
*/
public class IdentifiableSupport implements Identifiable {
private Integer id;
/**
* @return Returns the id.
* @hibernate.id generator-class="native" type="java.lang.Integer" column="id"
*/
public Integer getId() {
return this.id;
}
/**
* @param id The id to set.
*/
public void setId(Integer id) {
this.id = id;
}
}