Package org.prevayler

Examples of org.prevayler.PrevaylerFactory


        return factory;
    }

    public Prevayler getPrevaylerServer() throws IOException, ClassNotFoundException {
        logger.info("Instanciando Prevayler Server");
        PrevaylerFactory factory = getPrevaylerFactoryServer();
    return factory.create();
    }
View Full Code Here


        PrevaylerFactory factory = getPrevaylerFactoryServer();
    return factory.create();
    }

    public PrevaylerFactory getPrevaylerFactoryServer() {
      PrevaylerFactory factory = new PrevaylerFactory();
        factory.configurePrevalentSystem(new PrevalentSystem());
        factory.configurePrevalenceBase(Constants.PREVAYLER_SERVER_DATA_DIRETORY);
        factory.configureReplicationServer(PrevaylerFactory.DEFAULT_REPLICATION_PORT);
        return factory;
    }
View Full Code Here

TOP

Related Classes of org.prevayler.PrevaylerFactory

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.