| parse SYNCTYPE for XAMGR lvl 7
return synctype value
CodePoint.SYNCTYPE_NEW_UOW -> XAResource.start()
CodePoint.SYNCTYPE_END_UOW -> XAResource.end()
CodePoint.SYNCTYPE_PREPARE -> XAResource.prepare()
CodePoint.SYNCTYPE_MIGRATE -> not supported //SYNCPT MGR LEVEL 5
CodePoint.SYNCTYPE_REQ_COMMIT -> not supported //SYNCPT MGR LEVEL 5
CodePoint.SYNCTYPE_COMMITTED -> XAResource.commit()
or local commit for null XID
CodePoint.SYNCTYPE_REQ_LOG -> not supported
CodePoint.SYNCTYPE_REQ_FORGET -> XAResource.forget()
CodePoint.SYNCTYPE_ROLLBACK -> XAResource.rollback()
CodePoint.SYNCTYPE_MIGRATED -> not supported
CodePoint.SYNCTYPE_INDOUBT -> XAResource.recover();
|