You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
592 B
38 lines
592 B
/** |
|
* |
|
*/ |
|
package kr.co.kihyun.beans.entity; |
|
|
|
import javax.jdo.annotations.*; |
|
|
|
/** |
|
* @author bhs |
|
* |
|
*/ |
|
@PersistenceCapable(identityType = IdentityType.APPLICATION) |
|
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE) |
|
public abstract class StringEntity extends MoumiEntity<String> { |
|
/** |
|
* |
|
*/ |
|
private static final long serialVersionUID = -201108159637355290L; |
|
|
|
@PrimaryKey |
|
protected String id; |
|
|
|
/** |
|
* @param id |
|
* the id to set |
|
*/ |
|
public void setId(String id) { |
|
this.id = id; |
|
} |
|
|
|
/** |
|
* @return the id |
|
*/ |
|
public String getId() { |
|
return id; |
|
} |
|
|
|
}
|
|
|