You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sa...@apache.org on 2014/07/12 00:21:15 UTC

[02/20] updating xbaya gui to the new airavata

http://git-wip-us.apache.org/repos/asf/airavata/blob/3e6c815a/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/TestUtilServer.java
----------------------------------------------------------------------
diff --git a/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/TestUtilServer.java b/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/TestUtilServer.java
index b82a2bd..3f31a6b 100644
--- a/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/TestUtilServer.java
+++ b/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/TestUtilServer.java
@@ -1,243 +1,243 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-package org.apache.airavata.xbaya.interpreter.utils;
-
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-import org.apache.airavata.wsmg.broker.BrokerServiceLifeCycle;
-import org.apache.axis2.AxisFault;
-import org.apache.axis2.context.ConfigurationContext;
-import org.apache.axis2.context.ConfigurationContextFactory;
-import org.apache.axis2.description.AxisService;
-import org.apache.axis2.description.InOutAxisOperation;
-import org.apache.axis2.engine.MessageReceiver;
-import org.apache.axis2.engine.ServiceLifeCycle;
-import org.apache.axis2.transport.http.SimpleHTTPServer;
-
-import javax.xml.namespace.QName;
-import java.io.IOException;
-import java.net.ServerSocket;
-
-public class TestUtilServer {
-    private static int count = 0;
-
-    private static SimpleHTTPServer receiver;
-
-    public static int TESTING_PORT = 5555;
-
-    public static final String FAILURE_MESSAGE = "Intentional Failure";
-
-    public static synchronized void deployService(AxisService service) throws AxisFault {
-        receiver.getConfigurationContext().getAxisConfiguration().addService(service);
-    }
-
-    public static synchronized void unDeployService(QName service) throws AxisFault {
-        receiver.getConfigurationContext().getAxisConfiguration().removeService(service.getLocalPart());
-    }
-
-    public static synchronized void unDeployClientService() throws AxisFault {
-        if (receiver.getConfigurationContext().getAxisConfiguration() != null) {
-            receiver.getConfigurationContext().getAxisConfiguration().removeService("AnonymousService");
-        }
-    }
-
-    public static synchronized void start(String repository, String axis2xml) throws Exception {
-        if (count == 0) {
-            ConfigurationContext er = getNewConfigurationContext(repository, axis2xml);
-            TESTING_PORT = getAvailablePort();
-            receiver = new SimpleHTTPServer(er, TESTING_PORT);
-
-            try {
-                receiver.start();
-                System.out.print("Server started on port " + TESTING_PORT + ".....");
-            } catch (Exception e) {
-                throw AxisFault.makeFault(e);
-            }
-
-            try {
-                Thread.sleep(2000);
-            } catch (InterruptedException e1) {
-                throw new AxisFault("Thread interuptted", e1);
-            }
-            startBroker();
-        }
-        count++;
-    }
-
-    public static void startBroker() throws Exception {
-
-        ServiceLifeCycle brokerLifeCycle = new BrokerServiceLifeCycle();
-
-        final String configFileParam = "configuration.file.name";
-        final String configFileValue = "airavata-server.properties";
-
-        AxisService notificationService = getNotificationService();
-        notificationService.addParameter(configFileParam, configFileValue);
-        notificationService.setServiceLifeCycle(brokerLifeCycle);
-        TestUtilServer.deployService(notificationService);
-        brokerLifeCycle.startUp(TestUtilServer.getConfigurationContext(), notificationService);
-
-        AxisService eventingService = getEventingService();
-        eventingService.addParameter(configFileParam, configFileValue);
-        eventingService.setServiceLifeCycle(brokerLifeCycle);
-        TestUtilServer.deployService(eventingService);
-        brokerLifeCycle.startUp(TestUtilServer.getConfigurationContext(), eventingService);
-
-    }
-
-    public static AxisService getEventingService() {
-
-        AxisService eventingService = new AxisService("EventingService");
-
-        createOperation(eventingService, "renew",
-                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/Renew",
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/RenewResponse");
-        createOperation(eventingService, "getCurrentStatus",
-                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/GetStatus",
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/GetStatusResponse");
-
-        createOperation(eventingService, "subscriptionEnd",
-                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/SubscriptionEnd", null);
-
-        createOperation(eventingService, "subscribe",
-                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe",
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/SubscribeResponse");
-        createOperation(eventingService, "unsubscribe",
-                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe",
-                "http://schemas.xmlsoap.org/ws/2004/08/eventing/UnsubscribeResponse");
-        createOperation(eventingService, "publish",
-                new org.apache.airavata.wsmg.broker.wseventing.WSEventingPublishMsgReceiver(),
-                "http://org.apache.airavata/WseNotification", null);
-
-        return eventingService;
-    }
-
-    public static AxisService getNotificationService() {
-
-        AxisService notificationService = new AxisService("NotificationService");
-
-        createOperation(notificationService, "notify",
-                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/Notify",
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/NotifyResponse");
-
-        createOperation(notificationService, "subscribe",
-                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/SubscribeRequest",
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/SubscribeRequestResponse");
-
-        createOperation(notificationService, "getCurrentMessage",
-                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/GetCurrentMessageRequest",
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/GetCurrentMessageResponse");
-
-        createOperation(notificationService, "pauseSubscription",
-                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/PauseSubsriptionRequest",
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/PauseSubscriptionResponse");
-
-        createOperation(notificationService, "resumeSubscription",
-                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/ResumeSubsriptionRequest",
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/ResumeSubscriptionResponse");
-
-        createOperation(notificationService, "unsubscribe",
-                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/UnsubsribeRequest",
-                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/UnsubscribeResponse");
-
-        return notificationService;
-
-    }
-
-    public static void createOperation(AxisService axisService, String name, MessageReceiver messageReceiver,
-            String inputAction, String outputAction) {
-        InOutAxisOperation operation1 = new InOutAxisOperation(new QName(name));
-        operation1.setMessageReceiver(messageReceiver);
-        operation1.setOutputAction(outputAction);
-        axisService.addOperation(operation1);
-        if (inputAction != null) {
-            axisService.mapActionToOperation(inputAction, operation1);
-        }
-    }
-
-    public static ConfigurationContext getNewConfigurationContext(String repository, String axis2xml) throws Exception {
-        return ConfigurationContextFactory.createConfigurationContextFromFileSystem(repository, axis2xml);
-    }
-
-    public static synchronized void stop() throws AxisFault {
-        if (count == 1) {
-            receiver.stop();
-            while (receiver.isRunning()) {
-                try {
-                    Thread.sleep(1000);
-                } catch (InterruptedException e1) {
-                    // nothing to do here
-                }
-            }
-            count = 0;
-            // tp.doStop();
-            System.out.print("Server stopped .....");
-        } else {
-            count--;
-        }
-        receiver.getConfigurationContext().terminate();
-    }
-
-    public static ConfigurationContext getConfigurationContext() {
-        return receiver.getConfigurationContext();
-    }
-
-    public static int getAvailablePort(){
-        ServerSocket serverSocket = null;
-        try {
-             serverSocket = new ServerSocket(0);
-             serverSocket.close();
-        } catch (IOException e) {
-            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
-        }
-        return serverSocket.getLocalPort();
-    }
-}
+///*
+// *
+// * Licensed to the Apache Software Foundation (ASF) under one
+// * or more contributor license agreements.  See the NOTICE file
+// * distributed with this work for additional information
+// * regarding copyright ownership.  The ASF licenses this file
+// * to you under the Apache License, Version 2.0 (the
+// * "License"); you may not use this file except in compliance
+// * with the License.  You may obtain a copy of the License at
+// *
+// *   http://www.apache.org/licenses/LICENSE-2.0
+// *
+// * Unless required by applicable law or agreed to in writing,
+// * software distributed under the License is distributed on an
+// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// * KIND, either express or implied.  See the License for the
+// * specific language governing permissions and limitations
+// * under the License.
+// *
+//*/
+//package org.apache.airavata.xbaya.interpreter.utils;
+//
+///*
+// *
+// * Licensed to the Apache Software Foundation (ASF) under one
+// * or more contributor license agreements.  See the NOTICE file
+// * distributed with this work for additional information
+// * regarding copyright ownership.  The ASF licenses this file
+// * to you under the Apache License, Version 2.0 (the
+// * "License"); you may not use this file except in compliance
+// * with the License.  You may obtain a copy of the License at
+// *
+// *   http://www.apache.org/licenses/LICENSE-2.0
+// *
+// * Unless required by applicable law or agreed to in writing,
+// * software distributed under the License is distributed on an
+// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// * KIND, either express or implied.  See the License for the
+// * specific language governing permissions and limitations
+// * under the License.
+// *
+//*/
+//
+//import org.apache.airavata.wsmg.broker.BrokerServiceLifeCycle;
+//import org.apache.axis2.AxisFault;
+//import org.apache.axis2.context.ConfigurationContext;
+//import org.apache.axis2.context.ConfigurationContextFactory;
+//import org.apache.axis2.description.AxisService;
+//import org.apache.axis2.description.InOutAxisOperation;
+//import org.apache.axis2.engine.MessageReceiver;
+//import org.apache.axis2.engine.ServiceLifeCycle;
+//import org.apache.axis2.transport.http.SimpleHTTPServer;
+//
+//import javax.xml.namespace.QName;
+//import java.io.IOException;
+//import java.net.ServerSocket;
+//
+//public class TestUtilServer {
+//    private static int count = 0;
+//
+//    private static SimpleHTTPServer receiver;
+//
+//    public static int TESTING_PORT = 5555;
+//
+//    public static final String FAILURE_MESSAGE = "Intentional Failure";
+//
+//    public static synchronized void deployService(AxisService service) throws AxisFault {
+//        receiver.getConfigurationContext().getAxisConfiguration().addService(service);
+//    }
+//
+//    public static synchronized void unDeployService(QName service) throws AxisFault {
+//        receiver.getConfigurationContext().getAxisConfiguration().removeService(service.getLocalPart());
+//    }
+//
+//    public static synchronized void unDeployClientService() throws AxisFault {
+//        if (receiver.getConfigurationContext().getAxisConfiguration() != null) {
+//            receiver.getConfigurationContext().getAxisConfiguration().removeService("AnonymousService");
+//        }
+//    }
+//
+//    public static synchronized void start(String repository, String axis2xml) throws Exception {
+//        if (count == 0) {
+//            ConfigurationContext er = getNewConfigurationContext(repository, axis2xml);
+//            TESTING_PORT = getAvailablePort();
+//            receiver = new SimpleHTTPServer(er, TESTING_PORT);
+//
+//            try {
+//                receiver.start();
+//                System.out.print("Server started on port " + TESTING_PORT + ".....");
+//            } catch (Exception e) {
+//                throw AxisFault.makeFault(e);
+//            }
+//
+//            try {
+//                Thread.sleep(2000);
+//            } catch (InterruptedException e1) {
+//                throw new AxisFault("Thread interuptted", e1);
+//            }
+//            startBroker();
+//        }
+//        count++;
+//    }
+//
+//    public static void startBroker() throws Exception {
+//
+//        ServiceLifeCycle brokerLifeCycle = new BrokerServiceLifeCycle();
+//
+//        final String configFileParam = "configuration.file.name";
+//        final String configFileValue = "airavata-server.properties";
+//
+//        AxisService notificationService = getNotificationService();
+//        notificationService.addParameter(configFileParam, configFileValue);
+//        notificationService.setServiceLifeCycle(brokerLifeCycle);
+//        TestUtilServer.deployService(notificationService);
+//        brokerLifeCycle.startUp(TestUtilServer.getConfigurationContext(), notificationService);
+//
+//        AxisService eventingService = getEventingService();
+//        eventingService.addParameter(configFileParam, configFileValue);
+//        eventingService.setServiceLifeCycle(brokerLifeCycle);
+//        TestUtilServer.deployService(eventingService);
+//        brokerLifeCycle.startUp(TestUtilServer.getConfigurationContext(), eventingService);
+//
+//    }
+//
+//    public static AxisService getEventingService() {
+//
+//        AxisService eventingService = new AxisService("EventingService");
+//
+//        createOperation(eventingService, "renew",
+//                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/Renew",
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/RenewResponse");
+//        createOperation(eventingService, "getCurrentStatus",
+//                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/GetStatus",
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/GetStatusResponse");
+//
+//        createOperation(eventingService, "subscriptionEnd",
+//                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/SubscriptionEnd", null);
+//
+//        createOperation(eventingService, "subscribe",
+//                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe",
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/SubscribeResponse");
+//        createOperation(eventingService, "unsubscribe",
+//                new org.apache.airavata.wsmg.broker.wseventing.WSEventingMsgReceiver(),
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe",
+//                "http://schemas.xmlsoap.org/ws/2004/08/eventing/UnsubscribeResponse");
+//        createOperation(eventingService, "publish",
+//                new org.apache.airavata.wsmg.broker.wseventing.WSEventingPublishMsgReceiver(),
+//                "http://org.apache.airavata/WseNotification", null);
+//
+//        return eventingService;
+//    }
+//
+//    public static AxisService getNotificationService() {
+//
+//        AxisService notificationService = new AxisService("NotificationService");
+//
+//        createOperation(notificationService, "notify",
+//                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/Notify",
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/NotifyResponse");
+//
+//        createOperation(notificationService, "subscribe",
+//                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/SubscribeRequest",
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/SubscribeRequestResponse");
+//
+//        createOperation(notificationService, "getCurrentMessage",
+//                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/GetCurrentMessageRequest",
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/GetCurrentMessageResponse");
+//
+//        createOperation(notificationService, "pauseSubscription",
+//                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/PauseSubsriptionRequest",
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/PauseSubscriptionResponse");
+//
+//        createOperation(notificationService, "resumeSubscription",
+//                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/ResumeSubsriptionRequest",
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/ResumeSubscriptionResponse");
+//
+//        createOperation(notificationService, "unsubscribe",
+//                new org.apache.airavata.wsmg.broker.wsnotification.WSNotificationMsgReceiver(),
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/UnsubsribeRequest",
+//                "http://www.ibm.com/xmlns/stdwip/web-services/WS-BaseNotification/UnsubscribeResponse");
+//
+//        return notificationService;
+//
+//    }
+//
+//    public static void createOperation(AxisService axisService, String name, MessageReceiver messageReceiver,
+//            String inputAction, String outputAction) {
+//        InOutAxisOperation operation1 = new InOutAxisOperation(new QName(name));
+//        operation1.setMessageReceiver(messageReceiver);
+//        operation1.setOutputAction(outputAction);
+//        axisService.addOperation(operation1);
+//        if (inputAction != null) {
+//            axisService.mapActionToOperation(inputAction, operation1);
+//        }
+//    }
+//
+//    public static ConfigurationContext getNewConfigurationContext(String repository, String axis2xml) throws Exception {
+//        return ConfigurationContextFactory.createConfigurationContextFromFileSystem(repository, axis2xml);
+//    }
+//
+//    public static synchronized void stop() throws AxisFault {
+//        if (count == 1) {
+//            receiver.stop();
+//            while (receiver.isRunning()) {
+//                try {
+//                    Thread.sleep(1000);
+//                } catch (InterruptedException e1) {
+//                    // nothing to do here
+//                }
+//            }
+//            count = 0;
+//            // tp.doStop();
+//            System.out.print("Server stopped .....");
+//        } else {
+//            count--;
+//        }
+//        receiver.getConfigurationContext().terminate();
+//    }
+//
+//    public static ConfigurationContext getConfigurationContext() {
+//        return receiver.getConfigurationContext();
+//    }
+//
+//    public static int getAvailablePort(){
+//        ServerSocket serverSocket = null;
+//        try {
+//             serverSocket = new ServerSocket(0);
+//             serverSocket.close();
+//        } catch (IOException e) {
+//            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
+//        }
+//        return serverSocket.getLocalPort();
+//    }
+//}

http://git-wip-us.apache.org/repos/asf/airavata/blob/3e6c815a/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java
----------------------------------------------------------------------
diff --git a/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java b/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java
index a498921..cde34ef 100644
--- a/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java
+++ b/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java
@@ -1,97 +1,97 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-package org.apache.airavata.xbaya.interpreter.utils;
-
-import org.apache.airavata.client.stub.interpretor.NameValue;
-import org.apache.airavata.xbaya.XBayaConfiguration;
-import org.apache.airavata.xbaya.XBayaConstants;
-import org.apache.airavata.xbaya.interpreter.EchoService;
-import org.apache.airavata.xbaya.interpreter.LevenshteinDistanceService;
-import org.apache.airavata.xbaya.interpreter.ComplexMathService;
-import org.apache.airavata.xbaya.interpretor.HeaderConstants;
-import org.apache.airavata.xbaya.interpretor.WorkflowInterpretorSkeleton;
-import org.apache.axis2.AxisFault;
-import org.apache.axis2.context.ConfigurationContext;
-import org.apache.axis2.context.ConfigurationContextFactory;
-import org.apache.axis2.description.AxisService;
-import org.apache.axis2.engine.ListenerManager;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
-import java.net.URISyntaxException;
-import java.net.URL;
-import java.nio.MappedByteBuffer;
-import java.nio.channels.FileChannel;
-import java.nio.charset.Charset;
-import java.util.HashMap;
-import java.util.Map;
-
-
-public class WorkflowTestUtils implements HeaderConstants{
-
-    public static XBayaConfiguration getConfiguration() throws URISyntaxException {
-        Map<String, String> configuration = new HashMap<String, String>();
-        configuration.put(HEADER_ELEMENT_GFAC,XBayaConstants.DEFAULT_GFAC_URL.toString());
-        configuration.put(HEADER_ELEMENT_REGISTRY,XBayaConstants.REGISTRY_URL.toASCIIString());
-        configuration.put(HEADER_ELEMENT_PROXYSERVER,XBayaConstants.DEFAULT_MYPROXY_SERVER);
-        configuration.put(HEADER_ELEMENT_MSGBOX,XBayaConstants.DEFAULT_MESSAGE_BOX_URL.toString());
-        configuration.put(HEADER_ELEMENT_DSC,XBayaConstants.DEFAULT_DSC_URL.toString());
-        configuration.put(HEADER_ELEMENT_BROKER,XBayaConstants.DEFAULT_BROKER_URL.toString());
-        return (new WorkflowInterpretorSkeleton()).getConfiguration(configuration);
-    }
-
-    public static String readWorkflow(URL url) throws IOException, URISyntaxException {
-        FileInputStream stream = new FileInputStream(new File(url.toURI()));
-        try {
-            FileChannel fc = stream.getChannel();
-            MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
-            /* Instead of using default, pass in a decoder. */
-            return Charset.defaultCharset().decode(bb).toString();
-        } finally {
-            stream.close();
-        }
-    }
-
-    public static ListenerManager axis2ServiceStarter() throws AxisFault {
-        try {
-            ConfigurationContext configContext = ConfigurationContextFactory
-                    .createBasicConfigurationContext("axis2_default.xml");
-
-            AxisService echoService = AxisService.createService(EchoService.class.getName(),
-                    configContext.getAxisConfiguration());
-            configContext.deployService(echoService);
-            AxisService distanceService = AxisService.createService(LevenshteinDistanceService.class.getName(),
-                    configContext.getAxisConfiguration());
-            configContext.deployService(distanceService);
-            AxisService mathService = AxisService.createService(ComplexMathService.class.getName(),
-                    configContext.getAxisConfiguration());
-            configContext.deployService(mathService);
-
-            ListenerManager manager = new ListenerManager();
-            manager.init(configContext);
-            manager.start();
-            return manager;
-        } catch (Exception e) {
-            throw AxisFault.makeFault(e);
-        }
-    }
-}
+///*
+// *
+// * Licensed to the Apache Software Foundation (ASF) under one
+// * or more contributor license agreements.  See the NOTICE file
+// * distributed with this work for additional information
+// * regarding copyright ownership.  The ASF licenses this file
+// * to you under the Apache License, Version 2.0 (the
+// * "License"); you may not use this file except in compliance
+// * with the License.  You may obtain a copy of the License at
+// *
+// *   http://www.apache.org/licenses/LICENSE-2.0
+// *
+// * Unless required by applicable law or agreed to in writing,
+// * software distributed under the License is distributed on an
+// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// * KIND, either express or implied.  See the License for the
+// * specific language governing permissions and limitations
+// * under the License.
+// *
+//*/
+//package org.apache.airavata.xbaya.interpreter.utils;
+//
+//import org.apache.airavata.client.stub.interpretor.NameValue;
+//import org.apache.airavata.xbaya.XBayaConfiguration;
+//import org.apache.airavata.xbaya.XBayaConstants;
+//import org.apache.airavata.xbaya.interpreter.EchoService;
+//import org.apache.airavata.xbaya.interpreter.LevenshteinDistanceService;
+//import org.apache.airavata.xbaya.interpreter.ComplexMathService;
+//import org.apache.airavata.xbaya.interpretor.HeaderConstants;
+//import org.apache.airavata.xbaya.interpretor.WorkflowInterpretorSkeleton;
+//import org.apache.axis2.AxisFault;
+//import org.apache.axis2.context.ConfigurationContext;
+//import org.apache.axis2.context.ConfigurationContextFactory;
+//import org.apache.axis2.description.AxisService;
+//import org.apache.axis2.engine.ListenerManager;
+//
+//import java.io.File;
+//import java.io.FileInputStream;
+//import java.io.IOException;
+//import java.net.URISyntaxException;
+//import java.net.URL;
+//import java.nio.MappedByteBuffer;
+//import java.nio.channels.FileChannel;
+//import java.nio.charset.Charset;
+//import java.util.HashMap;
+//import java.util.Map;
+//
+//
+//public class WorkflowTestUtils implements HeaderConstants{
+//
+//    public static XBayaConfiguration getConfiguration() throws URISyntaxException {
+//        Map<String, String> configuration = new HashMap<String, String>();
+//        configuration.put(HEADER_ELEMENT_GFAC,XBayaConstants.DEFAULT_GFAC_URL.toString());
+//        configuration.put(HEADER_ELEMENT_REGISTRY,XBayaConstants.REGISTRY_URL.toASCIIString());
+//        configuration.put(HEADER_ELEMENT_PROXYSERVER,XBayaConstants.DEFAULT_MYPROXY_SERVER);
+//        configuration.put(HEADER_ELEMENT_MSGBOX,XBayaConstants.DEFAULT_MESSAGE_BOX_URL.toString());
+//        configuration.put(HEADER_ELEMENT_DSC,XBayaConstants.DEFAULT_DSC_URL.toString());
+//        configuration.put(HEADER_ELEMENT_BROKER,XBayaConstants.DEFAULT_BROKER_URL.toString());
+//        return (new WorkflowInterpretorSkeleton()).getConfiguration(configuration);
+//    }
+//
+//    public static String readWorkflow(URL url) throws IOException, URISyntaxException {
+//        FileInputStream stream = new FileInputStream(new File(url.toURI()));
+//        try {
+//            FileChannel fc = stream.getChannel();
+//            MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
+//            /* Instead of using default, pass in a decoder. */
+//            return Charset.defaultCharset().decode(bb).toString();
+//        } finally {
+//            stream.close();
+//        }
+//    }
+//
+//    public static ListenerManager axis2ServiceStarter() throws AxisFault {
+//        try {
+//            ConfigurationContext configContext = ConfigurationContextFactory
+//                    .createBasicConfigurationContext("axis2_default.xml");
+//
+//            AxisService echoService = AxisService.createService(EchoService.class.getName(),
+//                    configContext.getAxisConfiguration());
+//            configContext.deployService(echoService);
+//            AxisService distanceService = AxisService.createService(LevenshteinDistanceService.class.getName(),
+//                    configContext.getAxisConfiguration());
+//            configContext.deployService(distanceService);
+//            AxisService mathService = AxisService.createService(ComplexMathService.class.getName(),
+//                    configContext.getAxisConfiguration());
+//            configContext.deployService(mathService);
+//
+//            ListenerManager manager = new ListenerManager();
+//            manager.init(configContext);
+//            manager.start();
+//            return manager;
+//        } catch (Exception e) {
+//            throw AxisFault.makeFault(e);
+//        }
+//    }
+//}