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 da...@apache.org on 2005/11/16 04:58:05 UTC

svn commit: r344869 - /webservices/axis2/trunk/c/modules/core/description/src/description.h

Author: damitha
Date: Tue Nov 15 19:58:00 2005
New Revision: 344869

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

Added:
    webservices/axis2/trunk/c/modules/core/description/src/description.h

Added: webservices/axis2/trunk/c/modules/core/description/src/description.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/src/description.h?rev=344869&view=auto
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/src/description.h (added)
+++ webservices/axis2/trunk/c/modules/core/description/src/description.h Tue Nov 15 19:58:00 2005
@@ -0,0 +1,129 @@
+/*
+ * 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.
+ */
+ 
+#ifndef AXIS2_DESCRIPTION_H
+#define AXIS2_DESCRIPTION_H
+
+/**
+ * @file axis2_description.h
+ * @brief axis2 DESCRIPTION
+ */
+ 
+#include <axis2.h>
+#include <axis2_error.h>
+#include <axis2_defines.h>
+#include <axis2_env.h>
+#include <axis2_allocator.h>
+#include <axis2_string.h>
+#include <axis2_hash.h>
+
+#ifdef __cplusplus
+extern "C" 
+{
+#endif
+
+/*********************************** Constansts********************************/
+
+/**
+ * Field EXECUTION_CHAIN_KEY
+ */
+#define EXECUTION_CHAIN_KEY  "EXECUTION_CHAIN_KEY"
+
+/**
+ * Field EXECUTION_OUT_CHAIN_KEY
+ */
+#define EXECUTION_OUT_CHAIN_KEY "EXECUTION_OUT_CHAIN_KEY"
+
+/**
+ * Field EXECUTION_FAULT_CHAIN_KEY
+ */
+#define EXECUTION_FAULT_CHAIN_KEY "EXECUTION_FAULT_CHAIN_KEY"
+
+/**
+ * Field MODULEREF_KEY
+ */
+#define MODULEREF_KEY  "MODULEREF_KEY"
+
+/**
+ * Field OPERATION_KEY
+ */
+#define OPERATION_KEY  "OPERATION_KEY"
+
+/**
+ * Field CLASSLOADER_KEY
+ */
+#define CLASSLOADER_KEY  "CLASSLOADER_KEY"
+
+/**
+ * Field CONTEXTPATH_KEY
+ */
+#define CONTEXTPATH_KEY  "CONTEXTPATH_KEY"
+
+/**
+ * Field PROVIDER_KEY
+ */
+#define MESSAGE_RECEIVER_KEY  "PROVIDER_KEY"
+
+/**
+ * Field STYLE_KEY
+ */
+#define STYLE_KEY  "STYLE_KEY"
+
+/**
+ * Field PARAMETER_KEY
+ */
+#define PARAMETER_KEY  "PARAMETER_KEY"
+
+/**
+ * Field INFLOW_KEY
+ */
+#define INFLOW_KEY  "INFLOW_KEY"
+
+/**
+ * Field OUTFLOW_KEY
+ */
+#define OUTFLOW_KEY  "OUTFLOW_KEY"
+
+/**
+ * Field FAULTFLOW_KEY
+ */
+#define IN_FAULTFLOW_KEY  "IN_FAULTFLOW_KEY"
+#define OUT_FAULTFLOW_KEY  "OUT_FAULTFLOW_KEY"
+
+/**
+ * Field PHASES_KEY
+ */
+#define PHASES_KEY  "PHASES_KEY"
+
+/**
+ * Field SERVICE_CLASS
+ */
+#define SERVICE_CLASS  "SERVICE_CLASS"
+
+/**
+ * Field SERVICE_CLASS_NAME
+ */
+#define SERVICE_CLASS_NAME "SERVICE_CLASS_NAME"
+
+	
+/*********************************** Constants*********************************/	
+	
+	
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* AXIS2_DESCRIPTION_H */