Package oracle.toplink.essentials.internal.helper

Examples of oracle.toplink.essentials.internal.helper.EJB30ConversionManager


        session.setLogLevel(logLevel);
        if(logWriter!=null){
            ((DefaultSessionLog)session.getSessionLog()).setWriter(logWriter);
         }
       
        session.getPlatform().setConversionManager(new EJB30ConversionManager());

        // Create an instance of MetadataProcessor for specified persistence unit info
        MetadataProcessor processor = new MetadataProcessor(unitInfo, session, privateClassLoader, true);
        // Process the Object/relational metadata from XML and annotations.
        PersistenceUnitProcessor.processORMetadata(processor,privateClassLoader, session, false);
View Full Code Here


            // Update loggers and settings for the singleton logger and the session logger.
            updateLoggers(predeployProperties, true, false, realClassLoader);
           
            warnOldProperties(predeployProperties, session);
   
            session.getPlatform().setConversionManager(new EJB30ConversionManager());
       
            PersistenceUnitTransactionType transactionType=null;
            //find and override the transaction type
            String transTypeString = getConfigPropertyAsStringLogDebug(TopLinkProperties.TRANSACTION_TYPE, predeployProperties, session);
            if ( transTypeString != null ){
View Full Code Here

TOP

Related Classes of oracle.toplink.essentials.internal.helper.EJB30ConversionManager

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.