Package org.apache.airavata.xbaya.jython.lib

Examples of org.apache.airavata.xbaya.jython.lib.NotificationSender


    this.myProxyChecker = new MyProxyChecker(this.engine);
    this.workflow = workflow;
        this.graph = workflow.getGraph();
    this.isSubWorkflow = subWorkflow;
    this.mode = GUI_MODE;
    this.notifier = new NotificationSender(
        this.configuration.getBrokerURL(), topic);
    this.topic = topic;
    this.actOnProvenance = actOnProvenance;
    this.runWithCrossProduct = this.configuration.isRunWithCrossProduct();
    engine.registerWorkflowInterpreter(this);
View Full Code Here


    /**
     * @throws XBayaException
     */
    public void testService() throws XBayaException {
        NotificationSender notifier = new NotificationSender(this.configuration.getBrokerURL(), "test-topic2");
        Invoker invoker = new GenericInvoker(QName.valueOf(TEST_SERVICE_QNAME), TEST_AWSDL, "test-node", null,
                this.configuration.getGFacURL().toString(), notifier);
        invoker.setup();
        invoker.setOperation("Run");
        invoker.setInput("inparam1", "test");
View Full Code Here

TOP

Related Classes of org.apache.airavata.xbaya.jython.lib.NotificationSender

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.