Package org.optaplanner.core.config.solver

Examples of org.optaplanner.core.config.solver.XmlSolverFactory


* OptaPlanner component for Camel
*/
public class OptaPlannerComponent extends DefaultComponent {

    protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters) throws Exception {
        SolverFactory solverFactory = new XmlSolverFactory(remaining);

        OptaPlannerEndpoint endpoint = new OptaPlannerEndpoint(uri, this, remaining);
        endpoint.setSolverFactory(solverFactory);
        setProperties(endpoint, parameters);

View Full Code Here

TOP

Related Classes of org.optaplanner.core.config.solver.XmlSolverFactory

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.