/**
* @ejb.interface-method
*/
public void testNullLockedFields(String jndiName, Integer id) throws Exception {
log.debug("testNullLockedFields> begin");
CmpEntityLocal entity = getCmpEntityHome(jndiName).findByPrimaryKey(id);
entity.setDoubleGroup1(new Double(11.11));
entity.setDoubleGroup2(new Double(22.22));
entity.setIntegerGroup1(new Integer(11));
entity.setIntegerGroup2(new Integer(22));
entity.setStringGroup1("str1 modified in testNullLockedFields");
entity.setStringGroup2("str2 modified in testNullLockedFields");
log.debug("testNullLockedFields> done");
}