Package org.caffinitas.mapper.core.accessors

Examples of org.caffinitas.mapper.core.accessors.Singletons


    PersistenceManagerImpl(Class<? extends AccessorFactory> accessorFactory,
                           Map<String, String> keyspaceNameLookup, StatementOptions statementOptions, boolean mySession,
                           ExecutionTracerFactory executionTracerFactory, Map<Class<?>, Class<? extends Converter>> staticConverters,
                           ValidatorFactory validatorFactory) {
        this.lsnr = new Lsnr();
        this.singletons = new Singletons(DefaultObjectFactory.INSTANCE);
        this.accessorFactory = singletons.getInstanceOf(accessorFactory);
        this.objectFactory = DefaultObjectFactory.INSTANCE;
        this.keyspaceNameLookup = ArrayUtil.simplifyMap(keyspaceNameLookup);
        this.statementOptions = statementOptions;
        this.mySession = mySession;
View Full Code Here

TOP

Related Classes of org.caffinitas.mapper.core.accessors.Singletons

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.