Package org.drools.command.runtime

Source Code of org.drools.command.runtime.ObjectFactory

package org.drools.command.runtime;

import javax.xml.bind.annotation.XmlRegistry;

import org.drools.command.runtime.BatchExecutionCommand;
import org.drools.command.runtime.GetGlobalCommand;
import org.drools.command.runtime.SetGlobalCommand;


@XmlRegistry
public class ObjectFactory {
    public BatchExecutionCommand createBatchExecutionCommand() {
        return new BatchExecutionCommand();
    }
   
    public GetGlobalCommand createGetGlobalCommand() {
        return new GetGlobalCommand();
    }
   
    public SetGlobalCommand createSetGlobalCommand() {
        return new SetGlobalCommand();
    }
   
}
TOP

Related Classes of org.drools.command.runtime.ObjectFactory

TOP
Copyright © 2018 www.massapi.com. 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.