package org.apache.cayenne.testdo.locking.auto; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; /** * Class _SimpleLockingTestEntity was generated by Cayenne. * It is probably a good idea to avoid changing this class manually, * since it may be overwritten next time code is regenerated. * If you need to make any customizations, please use subclass. */ public abstract class _SimpleLockingTestEntity extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String LOCKING_TEST_ID_PK_COLUMN = "LOCKING_TEST_ID"; public static final Property<String> DESCRIPTION = Property.create("description", String.class); public static final Property<String> NAME = Property.create("name", String.class); public void setDescription(String description) { writeProperty("description", description); } public String getDescription() { return (String)readProperty("description"); } public void setName(String name) { writeProperty("name", name); } public String getName() { return (String)readProperty("name"); } }