You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2005/08/03 06:30:30 UTC

svn commit: r227157 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentErrorMsgs.java

Author: deepal
Date: Tue Aug  2 21:30:21 2005
New Revision: 227157

URL: http://svn.apache.org/viewcvs?rev=227157&view=rev
Log: (empty)

Added:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentErrorMsgs.java

Added: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentErrorMsgs.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentErrorMsgs.java?rev=227157&view=auto
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentErrorMsgs.java (added)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentErrorMsgs.java Tue Aug  2 21:30:21 2005
@@ -0,0 +1,72 @@
+package org.apache.axis2.deployment;
+
+/*
+ * 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: Aug 2, 2005
+ * Time: 6:20:48 PM
+ */
+public class DeploymentErrorMsgs {
+    public static final String WSDL_FILE_NOT_FOUND = "wsdlfilenotfound";
+    public static final String SERVICE_XML_NOT_FOUND = "servicexmlnotfound";
+    public static final String MODULEXML_NOT_FOUND_FOR_THE_MODULE = "modulexmlnotfound";
+    public static final String CLASS_NOT_FOUND = "classnotfound";
+    public static final String REPO_CAN_NOT_BE_NULL = "repocannotbebull";
+    public static final String CONFIG_NOT_FOUND = "confignotfound";
+    public static final String PATH_TO_CONFIG_CAN_NOT_B_NULL = "pathtoconfigcanotnull";
+    public static final String MODULE_VAL_FAILED = "modulevalfailed";
+    public static final String IN_VALID_PHASE = "invalidphase";
+    public static final String IN_VALID_MODUELE_REF = "invalidmoduleref";
+    public static final String IN_VALID_MODUELE_REF_BY_OP = "invalidmodulerefbyop";
+    public static final String ADDING_NEW_MODULE = "addingnewmodule";
+    public static final String SETTING_CL = "settingcl";
+    public static final String DEPLOYING_WS = "deployingws";
+    public static final String IN_VALID_SERVICE = "invalidservice";
+    public static final String DEPLOYING_MODULE = "deployeingmodule";
+    public static final String INVALID_MODULE = "invalidmodule";
+    public static final String SERVICE_REMOVED = "serviceremoved";
+    public static final String TYPE_MAPPING_NOT_ALLOWED = "typemappingnotallowed";
+    public static final String ERROR_IN_LOADING_MR = "errorinloadingmr";
+    public static final String INVALID_CONFIG_ATTTRIBUTE = "invalidconfigattribute";
+    public static final String UNDEFINE_FLOW_TYPE = "undifeineflowtype";
+    public static final String FLOWTYPE_IS_REQD = "flowtypeisrequird";
+    public static final String ELEMENT_IS_NOT_ALLOWED = "elementisnotallow";
+    public static final String OUTFLOW_NOT_ALLOWED_IN_TRS_IN = "outflownotallowedintrin";
+    public static final String INFLOW_NOT_ALLOWED_IN_TRS_OUT = "inflownotallowedintrout";
+    public static final String UNKNOWN_ELEMENT = "unknownelement";
+    public static final String BAD_ARGU_4_SERVICE = "badarguforservice";
+    public static final String TYPE_MAPPING_NOT_IMPLEMENTED = "typemappingnotimpl";
+    public static final String BEAN_MAPPING_NOT_IMPLEMENTED = "beanmappingnotimpl";
+    public static final String MODEULE_NOT_FOUND = "modulenotfound";
+    public static final String BAD_PARA_ARGU = "badparaagu";
+    public static final String BAD_LIST_ARGU = "badlistagu";
+    public static final String INVALID_HANDLER_DIF = "invalidhandlerdif";
+    public static final String THIS_SHOULD_BE_IMPLEMENTED = "thisshouldbeimplment";
+    public static final String OP_NOT_FOUN_IN_WSDL = "opnotfoundinwsdl";
+    public static final String BAD_OP_ATTRIBUTE = "badopattribute";
+    public static final String UNKNOWN_IN_OPERATION = "unknownelementinop";
+    public static final String MODULE_CANNOTHAVE_BOTH_NAME_AND_REF = "modulecannothavrbothnameandref";
+    public static final String INVALID_ELE_IN_MODULE = "invalideleinmodule";
+    public static final String INVALID_PHASE = "invalidphase";
+    public static final String INVALID_MODULE_REF = "invalidmodulerefbyconfig";
+    public static final String PHASE_DOES_NOT_SPECIFED = "phasedosenotspecified";
+    public static final String SERVICE_MODULE_CAN_NOT_REFER_GLOBAL_PHASE = "servicemodulecannothaveglobal";
+
+}