entityMgrReferenceDescriptor.setPersistenceContextType(contextType);
} else if (TagNames.PERSISTENCE_CONTEXT_SYNCHRONIZATION_TYPE.equals(element.getQName() ) ) {
EntityManagerReferenceDescriptor entityMgrReferenceDescriptor =
(EntityManagerReferenceDescriptor)getDescriptor();
SynchronizationType synchronizationType;
if (SYNCHRONIZED.equals(value)) {
synchronizationType = SynchronizationType.SYNCHRONIZED;
} else if (UNSYNCHRONIZED.equals(value)) {
synchronizationType = SynchronizationType.UNSYNCHRONIZED;
} else {