Package org.kie.remote.jaxb.gen

Examples of org.kie.remote.jaxb.gen.SignalEventCommand


        return unsupported(KieSession.class, ProcessInstance.class);
    }

    @Override
    public void signalEvent( String type, Object event ) {
        SignalEventCommand cmd = new SignalEventCommand();
        cmd.setEvent(event);
        cmd.setEventType(type);
        executeCommand(cmd);
    }
View Full Code Here


        executeCommand(cmd);
    }

    @Override
    public void signalEvent( String type, Object event, long processInstanceId ) {
        SignalEventCommand cmd = new SignalEventCommand();
        cmd.setEvent(event);
        cmd.setEventType(type);
        cmd.setProcessInstanceId(processInstanceId);
        executeCommand(cmd);
    }
View Full Code Here

TOP

Related Classes of org.kie.remote.jaxb.gen.SignalEventCommand

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.