Which of the following methods from the EntityContext interface are allowed to be used within your CMP entity bean's ejbPassivate() method? correct answers are 1. getEJBObject() 2. getPrimaryKey() 3. getEJBHome()
But I think only 3 is correct? somebody plz clarify.
Look at pg. 251 of the spec. When ejbPassivate is called, the instance is still connected to an entity object so it can obtain the EJBObject reference and a reference to the primary key.