You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by de...@apache.org on 2005/05/12 15:34:36 UTC

svn commit: r169818 - in /webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util: ./ DeploymentTempData.java

Author: deepal
Date: Thu May 12 06:34:35 2005
New Revision: 169818

URL: http://svn.apache.org/viewcvs?rev=169818&view=rev
Log:
to store deployment time temp data

Added:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util/
    webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util/DeploymentTempData.java

Added: webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util/DeploymentTempData.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util/DeploymentTempData.java?rev=169818&view=auto
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util/DeploymentTempData.java (added)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/util/DeploymentTempData.java Thu May 12 06:34:35 2005
@@ -0,0 +1,83 @@
+package org.apache.axis.deployment.util;
+
+import java.util.ArrayList;
+
+/*
+* Copyright 2004,2005 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*
+*/
+
+/**
+ * Author : Deepal Jayasinghe
+ * Date: May 12, 2005
+ * Time: 7:14:26 PM
+ */
+public class DeploymentTempData {
+
+    private static DeploymentTempData deploymentTempData;
+
+    private ArrayList INPhases ;
+    private ArrayList OUTPhases ;
+    private ArrayList IN_FaultPhases ;
+    private ArrayList OUT_FaultPhases ;
+
+    private DeploymentTempData() {
+
+    }
+
+    public static DeploymentTempData getInstance(){
+        if(deploymentTempData == null ){
+            deploymentTempData = new DeploymentTempData();
+        }
+        return deploymentTempData;
+    }
+
+
+
+    public void setINPhases(ArrayList INPhases) {
+        this.INPhases = INPhases;
+    }
+
+    public void setOUTPhases(ArrayList OUTPhases) {
+        this.OUTPhases = OUTPhases;
+    }
+
+    public void setIN_FaultPhases(ArrayList IN_FaultPhases) {
+        this.IN_FaultPhases = IN_FaultPhases;
+    }
+
+    public void setOUT_FaultPhases(ArrayList OUT_FaultPhases) {
+        this.OUT_FaultPhases = OUT_FaultPhases;
+    }
+
+    public ArrayList getINPhases() {
+        return INPhases;
+    }
+
+    public ArrayList getOUTPhases() {
+        return OUTPhases;
+    }
+
+    public ArrayList getIN_FaultPhases() {
+        return IN_FaultPhases;
+    }
+
+    public ArrayList getOUT_FaultPhases() {
+        return OUT_FaultPhases;
+    }
+
+
+}