Package com.volantis.shared.metadata.jpox

Examples of com.volantis.shared.metadata.jpox.Bundle


    public void destroy() {
        persistence.destroy();
    }

    public Object persistObject(MetaDataObject object) {
        Bundle bundle = PersistenceConvertor.
            getDefaultInstance().convertToBundleDAO(object);
        return persistence.persistObject(bundle);
    }
View Full Code Here


            getDefaultInstance().convertToBundleDAO(object);
        return persistence.persistObject(bundle);
    }

    public Inhibitor retrieveObject(Object id) {
        Bundle bundle = (Bundle)persistence.retrieveObject(id);
        return PersistenceConvertor.
            getDefaultInstance().convertToInhibitor(bundle);
    }
View Full Code Here

TOP

Related Classes of com.volantis.shared.metadata.jpox.Bundle

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.