Examples of enlistCreated()


Examples of org.apache.isis.core.runtime.system.transaction.IsisTransaction.enlistCreated()

                    getPersistenceSession().remapAsPersistent(adapter, persistentOid);

                    CallbackFacet.Util.callCallback(adapter, PersistedCallbackFacet.class);

                    final IsisTransaction transaction = getCurrentTransaction();
                    transaction.enlistCreated(adapter);
                } else {
                    // updating;
                    // the callback and transaction.enlist are done in the preDirty callback
                    // (can't be done here, as the enlist requires to capture the 'before' values)
                    CallbackFacet.Util.callCallback(adapter, UpdatedCallbackFacet.class);
View Full Code Here

Examples of org.apache.isis.core.runtime.system.transaction.IsisTransaction.enlistCreated()

                    getPersistenceSession().remapAsPersistent(adapter, persistentOid);

                    callbackFacetClass = PersistedCallbackFacet.class;
                   
                    final IsisTransaction transaction = getCurrentTransaction();
                    transaction.enlistCreated(adapter);
                } else {
                    // updating
                    callbackFacetClass = UpdatedCallbackFacet.class;
                   
                    // no need to call transaction.enlist(..);
View Full Code Here

Examples of org.apache.isis.core.runtime.system.transaction.IsisTransaction.enlistCreated()

                    getPersistenceSession().remapAsPersistent(adapter, persistentOid);

                    callbackFacetClass = PersistedCallbackFacet.class;
                   
                    final IsisTransaction transaction = getCurrentTransaction();
                    transaction.enlistCreated(adapter);
                } else {
                    // updating
                    callbackFacetClass = UpdatedCallbackFacet.class;
                   
                    // no need to call transaction.enlist(..);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.