Package org.apache.isis.objectstore.jdo.datanucleus

Examples of org.apache.isis.objectstore.jdo.datanucleus.DataNucleusObjectStore


public class IsisJdoSupportImpl implements IsisJdoSupport {
   
    @Programmatic
    @Override
    public <T> T refresh(T domainObject) {
        DataNucleusObjectStore objectStore = getObjectStore();
        ObjectAdapter adapter = getAdapterManager().adapterFor(domainObject);
        objectStore.refreshRoot(adapter);
        return domainObject;
    }
View Full Code Here


    // Dependencies (from context)
    // //////////////////////////////////////////////////////////////


    protected PersistenceManager getJdoPersistenceManager() {
        final DataNucleusObjectStore objectStore = getDataNucleusObjectStore();
        return objectStore.getPersistenceManager();
    }
View Full Code Here

    protected IsisTransaction getCurrentTransaction() {
        return IsisContext.getCurrentTransaction();
    }

    protected PersistenceManager getJdoPersistenceManager() {
        final DataNucleusObjectStore objectStore = getObjectStore();
        return objectStore.getPersistenceManager();
    }
View Full Code Here

public class IsisJdoSupportImpl implements IsisJdoSupport {
   
    @Programmatic
    @Override
    public <T> T refresh(T domainObject) {
        DataNucleusObjectStore objectStore = getObjectStore();
        ObjectAdapter adapter = getAdapterManager().adapterFor(domainObject);
        objectStore.refreshRoot(adapter);
        return domainObject;
    }
View Full Code Here

    protected IsisTransaction getCurrentTransaction() {
        return IsisContext.getCurrentTransaction();
    }

    protected PersistenceManager getJdoPersistenceManager() {
        final DataNucleusObjectStore objectStore = getObjectStore();
        return objectStore.getPersistenceManager();
    }
View Full Code Here

    // Dependencies (from context)
    // //////////////////////////////////////////////////////////////


    protected PersistenceManager getJdoPersistenceManager() {
        final DataNucleusObjectStore objectStore = getDataNucleusObjectStore();
        return objectStore.getPersistenceManager();
    }
View Full Code Here

public class IsisJdoSupportImpl implements IsisJdoSupport {
   
    @Programmatic
    @Override
    public <T> T refresh(T domainObject) {
        DataNucleusObjectStore objectStore = getObjectStore();
        ObjectAdapter adapter = getAdapterManager().adapterFor(domainObject);
        objectStore.refreshRoot(adapter);
        return domainObject;
    }
View Full Code Here

    protected IsisTransaction getCurrentTransaction() {
        return IsisContext.getCurrentTransaction();
    }

    protected PersistenceManager getJdoPersistenceManager() {
        final DataNucleusObjectStore objectStore = getObjectStore();
        return objectStore.getPersistenceManager();
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.objectstore.jdo.datanucleus.DataNucleusObjectStore

Copyright © 2018 www.massapicom. 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.