Package org.apache.openjpa.writebehind

Examples of org.apache.openjpa.writebehind.WriteBehindConfigurationException


            // Verify we are not missing one or more of the following required
            // WriteBehind configuration parameters:
            //   - openjpa.DataCache
            //   - openjpa.WriteBehindCallback
            if (_conf.getDataCacheManagerInstance().getSystemDataCache() == null) {
                throw new WriteBehindConfigurationException(
                    _loc.get("writebehind-cfg-err",
                    "openjpa.DataCache").getMessage());
            }
            if (_conf.getWriteBehindCallbackInstance() == null ) {
                throw new WriteBehindConfigurationException(
                    _loc.get("writebehind-cfg-err",
                    "openjpa.WriteBehindCallback").getMessage());
            }
   
            Broker broker =
View Full Code Here

TOP

Related Classes of org.apache.openjpa.writebehind.WriteBehindConfigurationException

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.