Searched refs:EntityContext (Results 1 - 11 of 11) sorted by relevance

/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/
H A DEntityContext.java47 * The EntityContext interface provides an instance with access to the
49 * The container passes the EntityContext interface to an entity
52 * <p> The EntityContext interface remains associated with the instance for
54 * obtains using the EntityContext interface (such as the result of the
60 public interface EntityContext extends EJBContext interface in inherits:EJBContext
H A DEntityBean.java65 * @param ctx An EntityContext interface for the instance. The instance
79 public void setEntityContext(EntityContext ctx) throws EJBException,
/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/team/
H A DPlayerBean.java50 private EntityContext context;
113 public void setEntityContext(EntityContext ctx) {
H A DLeagueBean.java50 private EntityContext context;
151 public void setEntityContext(EntityContext ctx) {
H A DTeamBean.java51 private EntityContext context;
182 public void setEntityContext(EntityContext ctx) {
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/ejb/
H A DContainerHelper.java167 /** Called in a CMP-supported environment to mark EntityContext as
173 * @param context the EntityContext of the bean beeing removed.
175 void setCascadeDeleteAfterSuperEJBRemove(EntityContext context);
H A DCMPHelper.java53 import javax.ejb.EntityContext;
201 /** Called in a managed environment to mark EntityContext of the
208 * @param context the EntityContext of the bean beeing removed.
210 public static void setCascadeDeleteAfterSuperEJBRemove(EntityContext context) {
H A DSunContainerHelper.java56 import javax.ejb.EntityContext;
255 * operation for a given EntityContext.
261 * @param context the EntityContext of the bean beeing removed.
263 public void setCascadeDeleteAfterSuperEJBRemove(EntityContext context) {
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEntityContextImpl.java59 implements EntityContext
73 // the EntityContext instead of enclosing it within a wrapper class.
146 * Implementation of EntityContext method.
162 * Implementation of EntityContext method, overrides EJBContextImpl method.
188 return new EJBTimerServiceWrapper(timerService, (EntityContext) this);
H A DEJBTimerServiceWrapper.java61 import javax.ejb.EntityContext;
94 EntityContext entityContext)
237 ((EntityContext /** XXX Impl XXX **/) ejbContext_).getPrimaryKey();
H A DTimerBean.java54 import javax.ejb.EntityContext;
703 Object timedObjectPrimaryKey = (context instanceof EntityContext) ?
704 ((EntityContext)context).getPrimaryKey() : null;

Completed in 36 milliseconds