home *** CD-ROM | disk | FTP | other *** search
- import javax.ejb.EJBObject;
- import javax.ejb.EntityContext;
-
- public class JDPEntityContext extends JDPEJBContext implements EntityContext {
- EJBObject thisObject;
- Object primaryKey;
-
- public EJBObject getEJBObject() throws IllegalStateException {
- return this.thisObject;
- }
-
- public void setPrimaryKey(Object var1) {
- this.primaryKey = var1;
- }
-
- public Object getPrimaryKey() {
- return this.primaryKey;
- }
- }
-