if ((concurrencyManagementAttribute == null)
|| (concurrencyManagementAttribute.value() == ConcurrencyManagementType.CONTAINER)) {
Lock lockingAttribute = ejbClass.getAnnotation(Lock.class);
if (lockingAttribute == null) {
ejbClass.addAnnotation(new LockingAttributeLiteral(LockType.WRITE));
}
}
super.fillClassDefaults();
}