* @ejb.interface-method
*/
public void testTimestampStrategyFail(String jndiName, Integer id) throws Exception
{
log.debug("testTimestampStrategyFail> begin");
CmpEntityLocal entity = getCmpEntityHome(jndiName).findByPrimaryKey(id);
entity.setIntegerGroup1(new Integer(111));
entity.setStringGroup2("modified in testTimestampStrategyFail");
entity.getDoubleGroup1();
myHome.create().modifyGroup1InRequiresNew(jndiName, id);
log.debug("testTimestampStrategyFail> done");
}