Examples of MyProxyChecker


Examples of org.apache.airavata.xbaya.myproxy.gui.MyProxyChecker

     *
     */
    public ODEInvokerWindow(XBayaEngine engine) {
        this.engine = engine;
        this.invoker = new ODEInvoker(engine);
        this.myProxyChecker = new MyProxyChecker(this.engine);
        initGUI();

    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.utils.MyProxyChecker

                try {
                    MonitorConfiguration notifConfig = TavernaRunnerWindow.this.engine.getMonitor().getConfiguration();
                    TavernaRunnerWindow.this.engine.getMonitor().start();
                    notifConfig.setTopic(topicString);
                    XBayaConfiguration conf = TavernaRunnerWindow.this.engine.getConfiguration();
                    WorkflowInterpreterConfiguration workflowInterpreterConfiguration = new WorkflowInterpreterConfiguration(engine.getGUI().getWorkflow(),topicString,conf.getMessageBoxURL(), conf.getBrokerURL(), conf.getJcrComponentRegistry().getRegistry(), conf, TavernaRunnerWindow.this.engine.getGUI(), new MyProxyChecker(TavernaRunnerWindow.this.engine), TavernaRunnerWindow.this.engine.getMonitor());

                    WorkflowInterpreter workflowInterpreter = new WorkflowInterpreter(workflowInterpreterConfiguration, new GUIWorkflowInterpreterInteractorImpl(engine, engine.getGUI().getWorkflow()));
                    TavernaRunnerWindow.this.engine.registerWorkflowInterpreter(workflowInterpreter);
          workflowInterpreter.scheduleDynamically();
                } catch (WorkflowException e) {
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.utils.MyProxyChecker

      throws Exception {
    Object result = null;
    switch (messageType) {
    case INPUT_WORKFLOWINTERPRETER_FOR_WORKFLOW:
      Workflow subWorkflow= (Workflow) data;
            WorkflowInterpreterConfiguration workflowInterpreterConfiguration = new WorkflowInterpreterConfiguration(subWorkflow,config.getTopic(),config.getMessageBoxURL(), config.getMessageBrokerURL(), config.getRegistry(), config.getConfiguration(), config.getGUI(), new MyProxyChecker(this.engine), this.engine.getMonitor());
            workflowInterpreterConfiguration.setActOnProvenance(config.isActOnProvenance());
            workflowInterpreterConfiguration.setSubWorkflow(true);
            if (config.isTestMode()){
            workflowInterpreterConfiguration.setNotifier(new StandaloneNotificationSender(workflowInterpreterConfiguration.getTopic(),workflowInterpreterConfiguration.getWorkflow()));
            }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.utils.MyProxyChecker

     *
     */
    public ODEInvokerWindow(XBayaEngine engine) {
        this.engine = engine;
        this.invoker = new ODEInvoker(engine);
        this.myProxyChecker = new MyProxyChecker(this.engine);
        initGUI();

    }
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.utils.MyProxyChecker

             * @see java.lang.Thread#run()
             */
            @Override
            public void run() {
                XBayaConfiguration conf = DynamicWorkflowRunnerWindow.this.engine.getConfiguration();
                WorkflowInterpreterConfiguration workflowInterpreterConfiguration = new WorkflowInterpreterConfiguration(engine.getGUI().getWorkflow(),topicString,conf.getMessageBoxURL(), conf.getBrokerURL(), conf.getJcrComponentRegistry().getRegistry(), conf, DynamicWorkflowRunnerWindow.this.engine.getGUI(), new MyProxyChecker(DynamicWorkflowRunnerWindow.this.engine), DynamicWorkflowRunnerWindow.this.engine.getMonitor());
                workflowInterpreterConfiguration.setRunWithCrossProduct(isRunCrossProduct);

                WorkflowInterpreter workflowInterpreter = new WorkflowInterpreter(
                    workflowInterpreterConfiguration, new GUIWorkflowInterpreterInteractorImpl(engine, engine.getGUI().getWorkflow()));
                DynamicWorkflowRunnerWindow.this.engine.registerWorkflowInterpreter(workflowInterpreter);
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.utils.MyProxyChecker

    /**
     * Constructs a PegasusInvokerWindow.
     */
    public PegasusInvokerWindow(XBayaEngine engine) {
        this.engine = engine;
        this.myProxyChecker = new MyProxyChecker(this.engine);
        initGUI();
    }
View Full Code Here
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.