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 2006/06/01 06:34:48 UTC

svn commit: r410740 [5/7] - in /webservices/axis2/trunk/c/woden: include/woden/wsdl20/ include/woden/wsdl20/extensions/ include/woden/wsdl20/xml/ include/woden/xml/ src/wsdl20/ src/wsdl20/extensions/ src/xml/

Added: webservices/axis2/trunk/c/woden/src/wsdl20/interface_op.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl20/interface_op.c?rev=410740&view=auto
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl20/interface_op.c (added)
+++ webservices/axis2/trunk/c/woden/src/wsdl20/interface_op.c Wed May 31 21:34:47 2006
@@ -0,0 +1,964 @@
+/*
+ * 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.
+ */
+
+#include <woden/axis2_woden_wsdl_obj.h>
+#include <woden/wsdl20/axis2_woden_interface_op.h>
+#include <woden/wsdl20/extensions/axis2_woden_ext_element.h>
+#include <woden/wsdl20/extensions/axis2_woden_component_exts.h>
+#include <woden/xml/axis2_woden_xml_attr.h>
+#include <woden/wsdl20/xml/axis2_woden_documentation_element.h>
+#include <xml_schema/axis2_xml_schema_element.h>
+
+typedef struct axis2_woden_interface_op_impl axis2_woden_interface_op_impl_t;
+
+/** 
+ * @brief Interface Operation Struct Impl
+ *	Axis2 Interface Operation  
+ */ 
+struct axis2_woden_interface_op_impl
+{
+    axis2_woden_interface_op_t interface_op;
+    axis2_woden_nested_configurable_t *nested_configurable;
+    axis2_woden_obj_types_t obj_type;
+    axis2_hash_t *super;
+    axis2_hash_t *methods;
+    axis2_qname_t *f_qname;
+    axis2_url_t *f_msg_exchange_pattern;
+    axis2_array_list_t *f_style;
+    axis2_array_list_t *f_msg_refs;
+    axis2_array_list_t *f_fault_refs;
+};
+
+#define INTF_TO_IMPL(interface_op) ((axis2_woden_interface_op_impl_t *) interface_op)
+
+axis2_status_t AXIS2_CALL 
+axis2_woden_interface_op_free(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_hash_t *AXIS2_CALL 
+axis2_woden_interface_op_super_objs(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_woden_obj_types_t AXIS2_CALL 
+axis2_woden_interface_op_type(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_woden_nested_configurable_t *AXIS2_CALL
+axis2_woden_interface_op_get_base_impl(
+        void *interface_op,
+        axis2_env_t **env);
+
+/* ************************************************************
+ *  Interface Operation  methods (the WSDL Component model)
+ * ************************************************************/
+
+axis2_qname_t *AXIS2_CALL
+axis2_woden_interface_op_get_qname(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_url_t *AXIS2_CALL
+axis2_woden_interface_op_get_msg_exchange_pattern(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_msg_refs(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_fault_refs(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_style(
+        void *interface_op,
+        axis2_env_t **env);
+
+void *AXIS2_CALL
+axis2_woden_interface_op_to_element(
+        void *interface_op,
+        axis2_env_t **env);
+
+/* ************************************************************
+ *  Interface Operation Element methods (the XML Element model)
+ * ************************************************************/
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_set_qname(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_qname_t *qname);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_set_pattern(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_url_t *uri);
+
+axis2_url_t *AXIS2_CALL
+axis2_woden_interface_op_get_pattern(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_add_style_uri(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_url_t *uri);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_remove_style_uri(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_url_t *uri);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_add_interface_msg_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *msg_ref);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_remove_interface_msg_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *msg_ref);
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_msg_ref_elements(
+        void *interface_op,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_add_interface_fault_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *fault_ref);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_remove_interface_fault_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *fault_ref);
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_fault_ref_elements(
+        void *interface_op,
+        axis2_env_t **env);
+
+static axis2_woden_interface_op_t *
+create(axis2_env_t **env);
+
+static axis2_status_t
+axis2_woden_interface_op_free_ops(
+        void *interface_op,
+        axis2_env_t **env);
+
+/************************Woden C Internal Methods******************************/
+AXIS2_DECLARE(axis2_woden_interface_op_t *)
+axis2_woden_interface_op_to_interface_op_element(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!interface_op)
+    {
+        interface_op_impl = (axis2_woden_interface_op_impl_t *) create(env);
+    }
+    else
+        interface_op_impl = (axis2_woden_interface_op_impl_t *) interface_op;
+
+    axis2_woden_interface_op_free_ops(interface_op, env);
+
+    interface_op_impl->interface_op.base.interface_op_element.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_interface_op_element_ops_t));
+    axis2_woden_interface_op_element_resolve_methods(&(interface_op_impl->interface_op.base.
+            interface_op_element), env, interface_op_impl->methods);
+    return interface_op;
+}
+
+AXIS2_DECLARE(axis2_woden_interface_op_t *)
+axis2_woden_interface_op_to_nested_configurable(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!interface_op)
+    {
+        interface_op_impl = (axis2_woden_interface_op_impl_t *) create(env);
+    }
+    else
+        interface_op_impl = (axis2_woden_interface_op_impl_t *) interface_op;
+
+    axis2_woden_interface_op_free_ops(interface_op, env);
+
+    interface_op_impl->interface_op.base.nested_configurable.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_nested_configurable_ops_t));
+    axis2_woden_nested_configurable_resolve_methods(&(interface_op_impl->interface_op.base.
+            nested_configurable), env, interface_op_impl->nested_configurable, 
+            interface_op_impl->methods);
+    return interface_op;
+}
+
+AXIS2_DECLARE(axis2_woden_interface_op_t *)
+axis2_woden_interface_op_to_configurable(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    void *configurable = NULL;
+    
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!interface_op)
+    {
+        interface_op_impl = (axis2_woden_interface_op_impl_t *) create(env);
+    }
+    else
+        interface_op_impl = (axis2_woden_interface_op_impl_t *) interface_op;
+
+    axis2_woden_interface_op_free_ops(interface_op, env);
+
+    interface_op_impl->interface_op.base.nested_configurable.base.configurable.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_configurable_ops_t));
+    configurable = AXIS2_WODEN_NESTED_CONFIGURABLE_GET_BASE_IMPL(
+            interface_op_impl->nested_configurable, env);
+    axis2_woden_configurable_resolve_methods(&(interface_op_impl->interface_op.base.
+            nested_configurable.base.configurable), env, configurable, interface_op_impl->methods);
+    return interface_op;
+}
+
+/************************End of Woden C Internal Methods***********************/
+static axis2_woden_interface_op_t *
+create(axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    interface_op_impl = AXIS2_MALLOC((*env)->allocator, 
+                    sizeof(axis2_woden_interface_op_impl_t));
+
+    interface_op_impl->obj_type= AXIS2_WODEN_INTERFACE_OP;
+    interface_op_impl->super = NULL;
+    interface_op_impl->methods = NULL;
+    interface_op_impl->f_qname = NULL;
+    interface_op_impl->f_msg_exchange_pattern = NULL;
+    interface_op_impl->f_style = NULL;
+    interface_op_impl->f_msg_refs = NULL;
+    interface_op_impl->f_fault_refs = NULL;
+    
+    interface_op_impl->interface_op.base.interface_op_element.ops = NULL;
+    interface_op_impl->interface_op.base.nested_configurable.ops = NULL;
+    interface_op_impl->interface_op.base.nested_configurable.base.configurable.ops = 
+            NULL;
+    
+    interface_op_impl->interface_op.ops = AXIS2_MALLOC((*env)->allocator, 
+            sizeof(axis2_woden_interface_op_ops_t));
+
+    interface_op_impl->interface_op.ops->free = axis2_woden_interface_op_free;
+    interface_op_impl->interface_op.ops->super_objs = axis2_woden_interface_op_super_objs;
+    interface_op_impl->interface_op.ops->type = axis2_woden_interface_op_type;
+    interface_op_impl->interface_op.ops->get_base_impl = axis2_woden_interface_op_get_base_impl;
+    
+    interface_op_impl->interface_op.ops->get_qname = 
+        axis2_woden_interface_op_get_qname;
+    interface_op_impl->interface_op.ops->get_msg_exchange_pattern = 
+        axis2_woden_interface_op_get_msg_exchange_pattern;
+    interface_op_impl->interface_op.ops->get_interface_msg_refs = 
+        axis2_woden_interface_op_get_interface_msg_refs;
+    interface_op_impl->interface_op.ops->get_interface_fault_refs = 
+        axis2_woden_interface_op_get_interface_fault_refs;
+    interface_op_impl->interface_op.ops->get_style = 
+        axis2_woden_interface_op_get_style;
+    interface_op_impl->interface_op.ops->to_element = 
+        axis2_woden_interface_op_to_element;
+ 
+    interface_op_impl->methods = axis2_hash_make(env);
+    if(!interface_op_impl->methods) 
+    {
+        AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+        return NULL;
+    }
+    axis2_hash_set(interface_op_impl->methods, "free", AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_free);
+    axis2_hash_set(interface_op_impl->methods, "super_objs", 
+            AXIS2_HASH_KEY_STRING, axis2_woden_interface_op_super_objs);
+    axis2_hash_set(interface_op_impl->methods, "type", 
+            AXIS2_HASH_KEY_STRING, axis2_woden_interface_op_type);
+
+    axis2_hash_set(interface_op_impl->methods, "get_qname", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_qname);
+    axis2_hash_set(interface_op_impl->methods, "get_msg_exchange_pattern", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_msg_exchange_pattern);
+    axis2_hash_set(interface_op_impl->methods, "get_interface_msg_refs", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_interface_msg_refs);
+    axis2_hash_set(interface_op_impl->methods, "get_interface_fault_refs", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_interface_fault_refs);
+    axis2_hash_set(interface_op_impl->methods, "get_style", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_style);
+    axis2_hash_set(interface_op_impl->methods, "to_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_to_element);
+    axis2_hash_set(interface_op_impl->methods, "set_qname", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_set_qname);
+    axis2_hash_set(interface_op_impl->methods, "set_pattern", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_set_pattern);
+    axis2_hash_set(interface_op_impl->methods, "get_pattern", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_pattern);
+    axis2_hash_set(interface_op_impl->methods, "add_style_uri", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_add_style_uri);
+    axis2_hash_set(interface_op_impl->methods, "remove_style_uri", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_remove_style_uri);
+    axis2_hash_set(interface_op_impl->methods, "add_interface_msg_ref_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_add_interface_msg_ref_element);
+    axis2_hash_set(interface_op_impl->methods, "remove_interface_msg_ref_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_remove_interface_msg_ref_element);
+    axis2_hash_set(interface_op_impl->methods, "get_interface_msg_ref_elements", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_interface_msg_ref_elements);
+    axis2_hash_set(interface_op_impl->methods, "add_interface_fault_ref_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_add_interface_fault_ref_element);
+    axis2_hash_set(interface_op_impl->methods, "remove_interface_fault_ref_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_remove_interface_fault_ref_element);
+    axis2_hash_set(interface_op_impl->methods, "get_interface_fault_ref_elements", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_interface_op_get_interface_fault_ref_elements);
+
+    return &(interface_op_impl->interface_op);
+}
+
+AXIS2_DECLARE(axis2_woden_interface_op_t *)
+axis2_woden_interface_op_create(axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    void *configurable = NULL;
+    
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    interface_op_impl = (axis2_woden_interface_op_impl_t *) create(env);
+
+    interface_op_impl->nested_configurable = axis2_woden_nested_configurable_create(env);
+
+    interface_op_impl->super = axis2_hash_make(env);
+    if(!interface_op_impl->super) 
+    {
+        AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+        return NULL;
+    }
+    axis2_hash_set(interface_op_impl->super, "AXIS2_WODEN_INTERFACE_OP", 
+            AXIS2_HASH_KEY_STRING, 
+            &(interface_op_impl->interface_op));
+    axis2_hash_set(interface_op_impl->super, "AXIS2_WODEN_NESTED_CONFIGURABLE", 
+            AXIS2_HASH_KEY_STRING, 
+            interface_op_impl->nested_configurable);
+    configurable = AXIS2_WODEN_NESTED_CONFIGURABLE_GET_BASE_IMPL(
+            interface_op_impl->nested_configurable, env);
+    axis2_hash_set(interface_op_impl->super, "AXIS2_WODEN_CONFIGURABLE", 
+            AXIS2_HASH_KEY_STRING, configurable);
+ 
+    return &(interface_op_impl->interface_op);
+}
+
+static axis2_status_t
+axis2_woden_interface_op_free_ops(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    interface_op_impl = INTF_TO_IMPL(interface_op);
+
+    if(interface_op_impl->interface_op.base.interface_op_element.ops)
+    {
+        AXIS2_FREE((*env)->allocator, interface_op_impl->interface_op.base.
+                interface_op_element.ops);
+        interface_op_impl->interface_op.base.interface_op_element.ops = NULL;
+    }
+
+    if(interface_op_impl->interface_op.base.nested_configurable.ops)
+    {
+        AXIS2_FREE((*env)->allocator, interface_op_impl->interface_op.base.
+                nested_configurable.ops);
+        interface_op_impl->interface_op.base.nested_configurable.ops = 
+            NULL;
+    }
+    
+    if(interface_op_impl->interface_op.base.nested_configurable.base.configurable.ops)
+    {
+        AXIS2_FREE((*env)->allocator, interface_op_impl->interface_op.base.
+                nested_configurable.base.configurable.ops);
+        interface_op_impl->interface_op.base.nested_configurable.base.configurable.ops = 
+            NULL;
+    }
+    
+    return AXIS2_SUCCESS;
+}
+
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_free(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    interface_op_impl = INTF_TO_IMPL(interface_op);
+
+    if(interface_op_impl->f_qname)
+    {
+        AXIS2_QNAME_FREE(interface_op_impl->f_qname, env);
+        interface_op_impl->f_qname = NULL;
+    }
+
+    if(interface_op_impl->f_msg_exchange_pattern)
+    {
+        AXIS2_URL_FREE(interface_op_impl->f_msg_exchange_pattern, env);
+        interface_op_impl->f_msg_exchange_pattern = NULL;
+    }
+
+    if(interface_op_impl->f_style)
+    {
+        AXIS2_ARRAY_LIST_FREE(interface_op_impl->f_style, env);
+        interface_op_impl->f_style = NULL;
+    }
+
+    if(interface_op_impl->f_msg_refs)
+    {
+        AXIS2_ARRAY_LIST_FREE(interface_op_impl->f_msg_refs, env);
+        interface_op_impl->f_msg_refs = NULL;
+    }
+
+    if(interface_op_impl->f_fault_refs)
+    {
+        AXIS2_ARRAY_LIST_FREE(interface_op_impl->f_fault_refs, env);
+        interface_op_impl->f_fault_refs = NULL;
+    }
+
+    if(interface_op_impl->super)
+    {
+        axis2_hash_free(interface_op_impl->super, env);
+        interface_op_impl->super = NULL;
+    }
+    
+    if(interface_op_impl->methods)
+    {
+        axis2_hash_free(interface_op_impl->methods, env);
+        interface_op_impl->methods = NULL;
+    }
+
+    if(interface_op_impl->nested_configurable)
+    {
+        AXIS2_WODEN_NESTED_CONFIGURABLE_FREE(interface_op_impl->
+                nested_configurable, env);
+        interface_op_impl->nested_configurable = NULL;
+    }
+
+    axis2_woden_interface_op_free_ops(interface_op, env);
+
+    if((&(interface_op_impl->interface_op))->ops)
+    {
+        AXIS2_FREE((*env)->allocator, (&(interface_op_impl->interface_op))->ops);
+        (&(interface_op_impl->interface_op))->ops = NULL;
+    }
+    
+    if(interface_op_impl)
+    {
+        AXIS2_FREE((*env)->allocator, interface_op_impl);
+        interface_op_impl = NULL;
+    }
+    return AXIS2_SUCCESS;
+}
+
+axis2_hash_t *AXIS2_CALL
+axis2_woden_interface_op_super_objs(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    interface_op_impl = INTF_TO_IMPL(interface_op);
+
+    return interface_op_impl->super;
+}
+
+axis2_woden_obj_types_t AXIS2_CALL
+axis2_woden_interface_op_type(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    interface_op_impl = INTF_TO_IMPL(interface_op);
+
+    return interface_op_impl->obj_type;
+}
+
+axis2_woden_nested_configurable_t *AXIS2_CALL
+axis2_woden_interface_op_get_base_impl(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    interface_op_impl = INTF_TO_IMPL(interface_op);
+
+    return interface_op_impl->nested_configurable;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_resolve_methods(
+        axis2_woden_interface_op_t *interface_op,
+        axis2_env_t **env,
+        axis2_woden_interface_op_t *interface_op_impl,
+        axis2_hash_t *methods)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl_l = NULL;
+    
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, methods, AXIS2_FAILURE);
+    interface_op_impl_l = INTF_TO_IMPL(interface_op_impl);
+    
+    interface_op->ops->free = axis2_hash_get(methods, "free", 
+            AXIS2_HASH_KEY_STRING);
+    interface_op->ops->super_objs = axis2_hash_get(methods, "super_objs", 
+            AXIS2_HASH_KEY_STRING);
+    interface_op->ops->type = axis2_hash_get(methods, "type", 
+            AXIS2_HASH_KEY_STRING);
+    
+    interface_op->ops->get_qname = axis2_hash_get(methods, 
+            "get_qname", AXIS2_HASH_KEY_STRING);
+    if(!interface_op->ops->get_qname && interface_op_impl_l)
+            interface_op->ops->get_qname = 
+            interface_op_impl_l->interface_op.ops->get_qname;
+    
+    interface_op->ops->get_msg_exchange_pattern = axis2_hash_get(methods, 
+            "get_msg_exchange_pattern", AXIS2_HASH_KEY_STRING);
+    if(!interface_op->ops->get_msg_exchange_pattern && interface_op_impl_l)
+            interface_op->ops->get_msg_exchange_pattern = 
+            interface_op_impl_l->interface_op.ops->get_msg_exchange_pattern;
+    
+    interface_op->ops->get_interface_msg_refs = axis2_hash_get(methods, 
+            "get_interface_msg_refs", AXIS2_HASH_KEY_STRING);
+    if(!interface_op->ops->get_interface_msg_refs && interface_op_impl_l)
+            interface_op->ops->get_interface_msg_refs = 
+            interface_op_impl_l->interface_op.ops->get_interface_msg_refs;
+    
+    interface_op->ops->get_interface_fault_refs = axis2_hash_get(methods, 
+            "get_interface_fault_refs", AXIS2_HASH_KEY_STRING);
+    if(!interface_op->ops->get_interface_fault_refs && interface_op_impl_l)
+            interface_op->ops->get_interface_fault_refs = 
+            interface_op_impl_l->interface_op.ops->get_interface_fault_refs;
+    
+    interface_op->ops->get_style = axis2_hash_get(methods, 
+            "get_style", AXIS2_HASH_KEY_STRING);
+    if(!interface_op->ops->get_style && interface_op_impl_l)
+            interface_op->ops->get_style = 
+            interface_op_impl_l->interface_op.ops->get_style;
+    
+    interface_op->ops->to_element = axis2_hash_get(methods, 
+            "to_element", AXIS2_HASH_KEY_STRING);
+    if(!interface_op->ops->to_element && interface_op_impl_l)
+            interface_op->ops->to_element = 
+            interface_op_impl_l->interface_op.ops->to_element;
+   
+    return AXIS2_SUCCESS;
+}
+
+/* ************************************************************
+ *  Interface Operation  methods (the WSDL Component model)
+ * ************************************************************/
+
+axis2_qname_t *AXIS2_CALL
+axis2_woden_interface_op_get_qname(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    return interface_op_impl->f_qname;
+}
+
+axis2_url_t *AXIS2_CALL
+axis2_woden_interface_op_get_msg_exchange_pattern(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    return interface_op_impl->f_msg_exchange_pattern;
+}
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_msg_refs(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+    
+    return interface_op_impl->f_msg_refs;
+}
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_fault_refs(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+    
+    return interface_op_impl->f_fault_refs;
+}
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_style(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+    
+    return interface_op_impl->f_style;
+}
+
+void *AXIS2_CALL
+axis2_woden_interface_op_to_element(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+    
+    return &(interface_op_impl->interface_op);
+}
+
+/* ************************************************************
+ *  Interface Operation Element methods (the XML Element model)
+ * ************************************************************/
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_set_qname(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_qname_t *qname)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, qname, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    if(!interface_op_impl->f_qname)
+    {
+        AXIS2_QNAME_FREE(interface_op_impl->f_qname, env);
+        interface_op_impl->f_qname = NULL;
+    }
+    interface_op_impl->f_qname = AXIS2_QNAME_CLONE(qname, env);
+
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_set_pattern(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_url_t *uri)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, uri, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    if(!interface_op_impl->f_msg_exchange_pattern)
+    {
+        /* TODO */
+    }
+    interface_op_impl->f_msg_exchange_pattern = uri;
+
+
+    return AXIS2_SUCCESS;
+}
+
+axis2_url_t *AXIS2_CALL
+axis2_woden_interface_op_get_pattern(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    return interface_op_impl->f_msg_exchange_pattern;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_add_style_uri(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_url_t *uri)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, uri, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+ 
+    if(!interface_op_impl->f_style)
+    {
+        interface_op_impl->f_style = axis2_array_list_create(env, 0);
+        if(!interface_op_impl->f_style)
+        {
+            AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+            return AXIS2_FAILURE;
+        }
+    }
+    AXIS2_ARRAY_LIST_ADD(interface_op_impl->f_style, env, uri);
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_remove_style_uri(
+        void *interface_op,
+        axis2_env_t **env,
+        axis2_url_t *uri)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+    int index = 0;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, uri, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+ 
+    index = AXIS2_ARRAY_LIST_INDEX_OF(interface_op_impl->f_style, env, uri);
+    AXIS2_ARRAY_LIST_REMOVE(interface_op_impl->f_style, env, index);
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_add_interface_msg_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *msg_ref)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, msg_ref, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+ 
+    if(!interface_op_impl->f_msg_refs)
+    {
+        interface_op_impl->f_msg_refs = axis2_array_list_create(env, 0);
+        if(!interface_op_impl->f_msg_refs)
+        {
+            AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+            return AXIS2_FAILURE;
+        }
+    }
+    AXIS2_ARRAY_LIST_ADD(interface_op_impl->f_msg_refs, env, msg_ref);
+
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_remove_interface_msg_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *msg_ref)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+    int index = 0;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, msg_ref, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+ 
+    index = AXIS2_ARRAY_LIST_INDEX_OF(interface_op_impl->f_msg_refs, env, msg_ref);
+    AXIS2_ARRAY_LIST_REMOVE(interface_op_impl->f_msg_refs, env, index);
+    return AXIS2_SUCCESS;
+}
+
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_msg_ref_elements(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    return interface_op_impl->f_msg_refs;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_add_interface_fault_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *fault_ref)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, fault_ref, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+ 
+    if(!interface_op_impl->f_fault_refs)
+    {
+        interface_op_impl->f_fault_refs = axis2_array_list_create(env, 0);
+        if(!interface_op_impl->f_fault_refs)
+        {
+            AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+            return AXIS2_FAILURE;
+        }
+    }
+    AXIS2_ARRAY_LIST_ADD(interface_op_impl->f_fault_refs, env, fault_ref);
+
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_interface_op_remove_interface_fault_ref_element(
+        void *interface_op,
+        axis2_env_t **env,
+        void *fault_ref)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+    int index = 0;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, fault_ref, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+ 
+    index = AXIS2_ARRAY_LIST_INDEX_OF(interface_op_impl->f_fault_refs, env, fault_ref);
+    AXIS2_ARRAY_LIST_REMOVE(interface_op_impl->f_fault_refs, env, index);
+    return AXIS2_SUCCESS;
+}
+
+
+axis2_array_list_t *AXIS2_CALL
+axis2_woden_interface_op_get_interface_fault_ref_elements(
+        void *interface_op,
+        axis2_env_t **env)
+{
+    axis2_woden_interface_op_impl_t *interface_op_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_INTERFACE_OP_SUPER_OBJS(interface_op, env);
+    interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
+
+    return interface_op_impl->f_fault_refs;
+}
+
+
+

Added: webservices/axis2/trunk/c/woden/src/wsdl20/property.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl20/property.c?rev=410740&view=auto
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl20/property.c (added)
+++ webservices/axis2/trunk/c/woden/src/wsdl20/property.c Wed May 31 21:34:47 2006
@@ -0,0 +1,1067 @@
+/*
+ * 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.
+ */
+
+#include <woden/axis2_woden_wsdl_obj.h>
+#include <woden/wsdl20/axis2_woden_property.h>
+#include <woden/wsdl20/extensions/axis2_woden_ext_element.h>
+#include <woden/wsdl20/extensions/axis2_woden_component_exts.h>
+#include <woden/xml/axis2_woden_xml_attr.h>
+#include <woden/wsdl20/xml/axis2_woden_documentation_element.h>
+#include <woden/wsdl20/axis2_woden_type_def.h>
+#include <woden/util/axis2_woden_generic_obj.h>
+#include <xml_schema/axis2_xml_schema_type.h>
+
+typedef struct axis2_woden_property_impl axis2_woden_property_impl_t;
+
+/** 
+ * @brief Feature Struct Impl
+ *	Axis2 Feature  
+ */ 
+struct axis2_woden_property_impl
+{
+    axis2_woden_property_t property;
+    axis2_woden_obj_types_t obj_type;
+    axis2_woden_documentable_t *documentable;
+    axis2_hash_t *super;
+    axis2_hash_t *methods;
+    /* WSDL Component model data */
+    axis2_url_t *f_ref;
+    axis2_generic_obj_t *f_value;
+    axis2_woden_type_def_t *f_value_constraint;
+    void *f_parent;
+    /* XML Element data */
+    axis2_qname_t *f_constraint_qname;
+    axis2_bool_t f_has_value_token;
+    void *f_types;
+};
+
+#define INTF_TO_IMPL(property) ((axis2_woden_property_impl_t *) property)
+
+axis2_status_t AXIS2_CALL 
+axis2_woden_property_free(
+        void *property,
+        axis2_env_t **env);
+
+axis2_hash_t *AXIS2_CALL 
+axis2_woden_property_super_objs(
+        void *property,
+        axis2_env_t **env);
+
+axis2_woden_obj_types_t AXIS2_CALL 
+axis2_woden_property_type(
+        void *property,
+        axis2_env_t **env);
+
+axis2_woden_documentable_t *AXIS2_CALL
+axis2_woden_property_get_base_impl(
+        void *property,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_ref(
+        void *property,
+        axis2_env_t **env,
+        axis2_url_t *ref);
+
+axis2_url_t *AXIS2_CALL
+axis2_woden_property_get_ref(
+        void *property,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_parent_element(
+        void *property,
+        axis2_env_t **env,
+        axis2_woden_wsdl_element_t *parent);
+
+void *AXIS2_CALL
+axis2_woden_property_get_parent_element(
+        void *property,
+        axis2_env_t **env);
+
+void *AXIS2_CALL
+axis2_woden_property_get_parent(
+        void *property,
+        axis2_env_t **env);
+
+void *AXIS2_CALL
+axis2_woden_property_to_element(
+        void *property,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_value(
+        void *property,
+        axis2_env_t **env,
+        void *value);
+
+void *AXIS2_CALL
+axis2_woden_property_get_value(
+        void *property,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_value_constraint(
+        void *property,
+        axis2_env_t **env,
+        void *type_def);
+
+void *AXIS2_CALL
+axis2_woden_property_get_value_constraint(
+        void *property,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_constraint_qname(
+        void *property,
+        axis2_env_t **env,
+        axis2_qname_t *type_def);
+
+axis2_qname_t *AXIS2_CALL
+axis2_woden_property_get_constraint_qname(
+        void *property,
+        axis2_env_t **env);
+
+void *AXIS2_CALL
+axis2_woden_property_get_constraint(
+        void *property,
+        axis2_env_t **env);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_types(
+        void *property,
+        axis2_env_t **env,
+        void *types);
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_has_value_token(
+        void *property,
+        axis2_env_t **env,
+        axis2_bool_t b);
+
+axis2_bool_t AXIS2_CALL
+axis2_woden_property_has_value_token(
+        void *property,
+        axis2_env_t **env);
+
+static axis2_woden_property_t *
+create(axis2_env_t **env);
+
+static axis2_status_t
+axis2_woden_property_free_ops(
+        void *property,
+        axis2_env_t **env);
+
+/************************Woden C Internal Methods******************************/
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_property_element(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+
+    axis2_woden_property_free_ops(property, env);
+
+    property_impl->property.base.property_element.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_property_element_ops_t));
+    axis2_woden_property_element_resolve_methods(&(property_impl->property.base.
+            property_element), env, property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_nested_element(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+
+    property_impl->property.base.property_element.base.nested_element.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_nested_element_ops_t));
+    axis2_woden_nested_element_resolve_methods(&(property_impl->property.base.
+            property_element.base.nested_element), env, property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_documentable_element(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+
+    property_impl->property.base.property_element.base.documentable_element.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_documentable_element_ops_t));
+    axis2_woden_documentable_element_resolve_methods(&(property_impl->property.base.
+            property_element.base.documentable_element), env, 
+            property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_documentable(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+
+    property_impl->property.base.documentable.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_documentable_ops_t));
+    axis2_woden_documentable_resolve_methods(&(property_impl->property.base.
+            documentable), env, property_impl->documentable, property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_wsdl_obj(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_woden_wsdl_obj_t *wsdl_obj = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+
+    property_impl->property.base.documentable.base.wsdl_obj.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_wsdl_obj_ops_t));
+    wsdl_obj = AXIS2_WODEN_DOCUMENTABLE_GET_BASE_IMPL(
+            property_impl->documentable, env);
+    axis2_woden_wsdl_obj_resolve_methods(&(property_impl->property.base.
+            documentable.base.wsdl_obj), env, wsdl_obj, property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_nested_component(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+  
+    property_impl->property.base.nested_component.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_nested_component_ops_t));
+    axis2_woden_nested_component_resolve_methods(&(property_impl->property.base.
+            nested_component), env, property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_wsdl_component(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+    property_impl->property.base.nested_component.wsdl_component.ops = 
+        AXIS2_MALLOC((*env)->allocator, 
+        sizeof(axis2_woden_wsdl_component_ops_t));
+    axis2_woden_wsdl_component_resolve_methods(&(property_impl->property.base.
+            nested_component.wsdl_component), env, property_impl->methods);
+    return property;
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_attr_extensible(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+
+    property_impl->property.base.documentable.base.wsdl_obj.base.
+            wsdl_element.base.attr_extensible.ops =
+            AXIS2_MALLOC((*env)->allocator, 
+            sizeof(axis2_woden_attr_extensible_ops_t));
+    axis2_woden_attr_extensible_resolve_methods(&(property_impl->property.base.
+            documentable.base.wsdl_obj.base.wsdl_element.base.attr_extensible), 
+            env, NULL, property_impl->methods);
+    return property;
+
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_to_element_extensible(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+
+    if(!property)
+    {
+        property_impl = (axis2_woden_property_impl_t *) create(env);
+    }
+    else
+        property_impl = (axis2_woden_property_impl_t *) property;
+    axis2_woden_property_free_ops(property, env);
+    property_impl->property.base.documentable.base.wsdl_obj.base.wsdl_element.
+                base.element_extensible.ops = AXIS2_MALLOC((*env)->allocator, 
+                sizeof(axis2_woden_element_extensible_ops_t));
+    axis2_woden_element_extensible_resolve_methods(&(property_impl->property.base.
+            documentable.base.wsdl_obj.base.wsdl_element.base.element_extensible), 
+            env, NULL, property_impl->methods);
+    return property;
+
+}
+
+/************************End of Woden C Internal Methods***********************/
+static axis2_woden_property_t *
+create(axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    property_impl = AXIS2_MALLOC((*env)->allocator, 
+                    sizeof(axis2_woden_property_impl_t));
+
+    property_impl->obj_type= AXIS2_WODEN_PROPERTY;
+    property_impl->super = NULL;
+    property_impl->methods = NULL;
+    property_impl->f_ref = NULL;
+    property_impl->f_value = NULL;
+    property_impl->f_value_constraint = NULL;
+    property_impl->f_parent = NULL;
+    property_impl->f_constraint_qname = NULL;
+    property_impl->f_has_value_token = AXIS2_FALSE;
+    property_impl->f_types = NULL;
+    
+    property_impl->property.base.property_element.ops = NULL;
+    property_impl->property.base.property_element.base.nested_element.ops = NULL;
+    property_impl->property.base.property_element.base.documentable_element.ops = 
+            NULL;
+    property_impl->property.base.documentable.ops = NULL;
+    property_impl->property.base.nested_component.ops = NULL; 
+    property_impl->property.base.nested_component.wsdl_component.ops = NULL;
+    property_impl->property.base.documentable.base.wsdl_obj.ops = NULL;
+    property_impl->property.base.documentable.base.wsdl_obj.base.wsdl_element.
+            base.attr_extensible.ops = NULL;
+    property_impl->property.base.documentable.base.wsdl_obj.base.wsdl_element.
+            base.element_extensible.ops = NULL;
+    
+    property_impl->property.ops = AXIS2_MALLOC((*env)->allocator, 
+            sizeof(axis2_woden_property_ops_t));
+
+    property_impl->property.ops->free = axis2_woden_property_free;
+    property_impl->property.ops->super_objs = axis2_woden_property_super_objs;
+    property_impl->property.ops->type = axis2_woden_property_type;
+    property_impl->property.ops->get_base_impl = axis2_woden_property_get_base_impl;
+
+    property_impl->property.ops->get_ref = axis2_woden_property_get_ref;
+    property_impl->property.ops->get_value_constraint = 
+        axis2_woden_property_get_value_constraint;
+    property_impl->property.ops->get_value = axis2_woden_property_get_value;
+    property_impl->property.ops->get_parent = axis2_woden_property_get_parent;
+    property_impl->property.ops->to_element = axis2_woden_property_to_element;
+ 
+    property_impl->methods = axis2_hash_make(env);
+    if(!property_impl->methods) 
+    {
+        AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+        return NULL;
+    }
+    axis2_hash_set(property_impl->methods, "free", AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_free);
+    axis2_hash_set(property_impl->methods, "super_objs", AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_super_objs);
+    axis2_hash_set(property_impl->methods, "type", 
+            AXIS2_HASH_KEY_STRING, axis2_woden_property_type);
+
+    axis2_hash_set(property_impl->methods, "set_ref", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_ref);
+    axis2_hash_set(property_impl->methods, "get_ref", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_ref);
+    axis2_hash_set(property_impl->methods, "set_parent_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_parent_element);
+    axis2_hash_set(property_impl->methods, "get_parent_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_parent_element);
+    axis2_hash_set(property_impl->methods, "get_parent", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_parent);
+    axis2_hash_set(property_impl->methods, "to_element", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_to_element);
+    axis2_hash_set(property_impl->methods, "set_value", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_value);
+    axis2_hash_set(property_impl->methods, "get_value", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_value);
+    axis2_hash_set(property_impl->methods, "set_value_constraint", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_value_constraint);
+    axis2_hash_set(property_impl->methods, "get_value_constraint", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_value_constraint);
+    axis2_hash_set(property_impl->methods, "set_constraint_qname", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_constraint_qname);
+    axis2_hash_set(property_impl->methods, "get_constraint_qname", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_constraint_qname);
+    axis2_hash_set(property_impl->methods, "get_constraint", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_get_constraint);
+    axis2_hash_set(property_impl->methods, "set_types", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_types);
+    axis2_hash_set(property_impl->methods, "set_has_value_token", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_set_has_value_token);
+    axis2_hash_set(property_impl->methods, "has_value_token", 
+            AXIS2_HASH_KEY_STRING, 
+            axis2_woden_property_has_value_token);
+
+    return &(property_impl->property);
+}
+
+AXIS2_DECLARE(axis2_woden_property_t *)
+axis2_woden_property_create(axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+   
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    property_impl = (axis2_woden_property_impl_t *) create(env);
+
+    property_impl->documentable = axis2_woden_documentable_create(env);
+
+    property_impl->super = axis2_hash_make(env);
+    if(!property_impl->super) 
+    {
+        AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+        return NULL;
+    }
+    axis2_hash_set(property_impl->super, "AXIS2_WODEN_PROPERTY", 
+            AXIS2_HASH_KEY_STRING, &(property_impl->property));
+    axis2_hash_set(property_impl->super, "AXIS2_WODEN_DOCUMENTABLE", 
+            AXIS2_HASH_KEY_STRING, property_impl->documentable);
+    
+    return &(property_impl->property);
+}
+
+static axis2_status_t
+axis2_woden_property_free_ops(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    property_impl = INTF_TO_IMPL(property);
+
+    if(property_impl->property.base.property_element.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                property_element.ops);
+        property_impl->property.base.property_element.ops = NULL;
+    }
+
+    if(property_impl->property.base.property_element.base.nested_element.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                property_element.base.nested_element.ops);
+        property_impl->property.base.property_element.base.nested_element.ops = 
+            NULL;
+    }
+    
+    if(property_impl->property.base.property_element.base.documentable_element.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                property_element.base.documentable_element.ops);
+        property_impl->property.base.property_element.base.documentable_element.ops = 
+            NULL;
+    }
+    
+    if(property_impl->property.base.documentable.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                documentable.ops);
+        property_impl->property.base.documentable.ops = 
+            NULL;
+    }
+    
+    if(property_impl->property.base.documentable.base.wsdl_obj.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                documentable.base.wsdl_obj.ops);
+        property_impl->property.base.documentable.base.wsdl_obj.ops = 
+            NULL;
+    }
+
+    if(property_impl->property.base.nested_component.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                nested_component.ops);
+        property_impl->property.base.nested_component.ops = NULL;
+    }
+
+    if(property_impl->property.base.nested_component.wsdl_component.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.
+                nested_component.wsdl_component.ops);
+        property_impl->property.base.nested_component.wsdl_component.ops = NULL;
+    }
+
+
+    if(property_impl->property.base.documentable.base.wsdl_obj.base.
+            wsdl_element.base.attr_extensible.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.documentable.
+                base.wsdl_obj.base.wsdl_element.base.attr_extensible.ops);
+        property_impl->property.base.documentable.base.wsdl_obj.base.wsdl_element.
+                base.attr_extensible.ops = NULL;
+    }
+
+    if(property_impl->property.base.documentable.base.wsdl_obj.base.
+            wsdl_element.base.element_extensible.ops)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl->property.base.documentable.
+                base.wsdl_obj.base.wsdl_element.base.element_extensible.ops);
+        property_impl->property.base.documentable.base.wsdl_obj.base.wsdl_element.
+                base.element_extensible.ops = NULL;
+    }
+    return AXIS2_SUCCESS;
+}
+
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_free(void *property,
+                        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    property_impl = INTF_TO_IMPL(property);
+
+    if(property_impl->f_ref)
+    {
+        AXIS2_URL_FREE(property_impl->f_ref, env);
+        property_impl->f_ref = NULL;
+    }
+   
+    /* TODO free f_parent */
+    
+    if(property_impl->super)
+    {
+        axis2_hash_free(property_impl->super, env);
+        property_impl->super = NULL;
+    }
+    
+    if(property_impl->methods)
+    {
+        axis2_hash_free(property_impl->methods, env);
+        property_impl->methods = NULL;
+    }
+
+    if(property_impl->documentable)
+    {
+        AXIS2_WODEN_DOCUMENTABLE_FREE(property_impl->documentable, env);
+        property_impl->documentable = NULL;
+    }
+
+    axis2_woden_property_free_ops(property, env);
+
+    if((&(property_impl->property))->ops)
+    {
+        AXIS2_FREE((*env)->allocator, (&(property_impl->property))->ops);
+        (&(property_impl->property))->ops = NULL;
+    }
+    
+    if(property_impl)
+    {
+        AXIS2_FREE((*env)->allocator, property_impl);
+        property_impl = NULL;
+    }
+    return AXIS2_SUCCESS;
+}
+
+axis2_hash_t *AXIS2_CALL
+axis2_woden_property_super_objs(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    property_impl = INTF_TO_IMPL(property);
+
+    return property_impl->super;
+}
+
+axis2_woden_obj_types_t AXIS2_CALL
+axis2_woden_property_type(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    property_impl = INTF_TO_IMPL(property);
+
+    return property_impl->obj_type;
+}
+
+axis2_woden_documentable_t *AXIS2_CALL
+axis2_woden_property_get_base_impl(void *property,
+                                axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    property_impl = INTF_TO_IMPL(property);
+
+    return property_impl->documentable;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_resolve_methods(
+        axis2_woden_property_t *property,
+        axis2_env_t **env,
+        axis2_woden_property_t *property_impl,
+        axis2_hash_t *methods)
+{
+    axis2_woden_property_impl_t *property_impl_l = NULL;
+    
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, methods, AXIS2_FAILURE);
+    property_impl_l = INTF_TO_IMPL(property_impl);
+    
+    property->ops->free = axis2_hash_get(methods, "free", 
+            AXIS2_HASH_KEY_STRING);
+    property->ops->super_objs = axis2_hash_get(methods, "super_objs", 
+            AXIS2_HASH_KEY_STRING);
+    property->ops->type = axis2_hash_get(methods, "type", 
+            AXIS2_HASH_KEY_STRING);
+
+    property->ops->get_ref = axis2_hash_get(methods, 
+            "get_ref", AXIS2_HASH_KEY_STRING);
+    if(!property->ops->get_ref && property_impl_l)
+            property->ops->get_ref = 
+            property_impl_l->property.ops->get_ref;
+    
+    property->ops->get_value_constraint = axis2_hash_get(methods, 
+            "get_value_constraint", AXIS2_HASH_KEY_STRING);
+    if(!property->ops->get_value_constraint && property_impl_l)
+            property->ops->get_value_constraint = 
+            property_impl_l->property.ops->get_value_constraint;
+    
+    property->ops->get_value = axis2_hash_get(methods, 
+            "get_value", AXIS2_HASH_KEY_STRING);
+    if(!property->ops->get_value && property_impl_l)
+            property->ops->get_value = 
+            property_impl_l->property.ops->get_value;
+    
+    property->ops->get_parent = axis2_hash_get(methods, 
+            "get_parent", AXIS2_HASH_KEY_STRING);
+    if(!property->ops->get_parent && property_impl_l)
+            property->ops->get_parent = 
+            property_impl_l->property.ops->get_parent;
+    
+    property->ops->to_element = axis2_hash_get(methods, 
+            "to_element", AXIS2_HASH_KEY_STRING);
+    if(!property->ops->to_element && property_impl_l)
+            property->ops->to_element = 
+            property_impl_l->property.ops->to_element;
+    
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_ref(
+        void *property,
+        axis2_env_t **env,
+        axis2_url_t *ref)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    if(property_impl->f_ref)
+    {
+        AXIS2_URL_FREE(property_impl->f_ref, env);
+    }
+    property_impl->f_ref = ref;
+    return AXIS2_SUCCESS;
+}
+
+axis2_url_t *AXIS2_CALL
+axis2_woden_property_get_ref(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+    
+    return property_impl->f_ref;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_parent_element(
+        void *property,
+        axis2_env_t **env,
+        axis2_woden_wsdl_element_t *parent)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    /*if(property_impl->f_parent)
+    {
+        AXIS2_WODEN_WSDL_ELEMENT_FREE(parent, env);
+    }*/
+    property_impl->f_parent = parent;
+    return AXIS2_SUCCESS;
+}
+
+void *AXIS2_CALL
+axis2_woden_property_get_parent_element(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    return property_impl->f_parent;
+}
+
+void *AXIS2_CALL
+axis2_woden_property_get_parent(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    return property_impl->f_parent;
+}
+
+void *AXIS2_CALL
+axis2_woden_property_to_element(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+    
+    return &(property_impl->property);
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_value(
+        void *property,
+        axis2_env_t **env,
+        void *value)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    if(property_impl->f_value)
+    {
+        AXIS2_WODEN_GENERIC_OBJ_FREE(property_impl->f_value, env);
+        property_impl->f_value = NULL;
+    }
+    property_impl->f_value = value;
+    return AXIS2_SUCCESS;
+}
+
+void *AXIS2_CALL
+axis2_woden_property_get_value(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    return property_impl->f_value;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_value_constraint(
+        void *property,
+        axis2_env_t **env,
+        void *type_def)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    /*if(property_impl->f_value_constraint)
+    {
+        AXIS2_WODEN_TYPE_DEFINITION_FREE(property_impl->f_value_constraint, 
+                env);
+        property_impl->f_value_constraint = NULL;
+    }*/
+    property_impl->f_value_constraint = type_def;
+    return AXIS2_SUCCESS;
+}
+
+void *AXIS2_CALL
+axis2_woden_property_get_value_constraint(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    return property_impl->f_value_constraint;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_constraint_qname(
+        void *property,
+        axis2_env_t **env,
+        axis2_qname_t *constraint)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    if(property_impl->f_constraint_qname)
+    {
+        AXIS2_QNAME_FREE(property_impl->f_constraint_qname, env);
+        property_impl->f_constraint_qname = NULL;
+    }
+    property_impl->f_constraint_qname = AXIS2_QNAME_CLONE(constraint, env);
+    return AXIS2_SUCCESS;
+}
+
+axis2_qname_t *AXIS2_CALL
+axis2_woden_property_get_constraint_qname(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    return property_impl->f_constraint_qname;
+}
+
+void *AXIS2_CALL
+axis2_woden_property_get_constraint(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_xml_schema_type_t *xst = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, NULL);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+   
+    if(property_impl->f_constraint_qname && property_impl->f_types)
+    {
+        xst = (axis2_xml_schema_type_t *) 
+            AXIS2_WODEN_TYPES_GET_TYPE_DEFINITION(property_impl->f_types, env, 
+                property_impl->f_constraint_qname);
+    }
+    return xst;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_types(
+        void *property,
+        axis2_env_t **env,
+        void *types)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+    
+    /*if(property_impl->f_types)
+    {
+        AXIS2_WODEN_TYPES_ELEMENT_FREE(property_impl->f_types, env);
+        property_impl->f_types = NULL;
+    }*/
+    property_impl->f_types = types;
+    return AXIS2_SUCCESS;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_woden_property_set_has_value_token(
+        void *property,
+        axis2_env_t **env,
+        axis2_bool_t b)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    property_impl->f_has_value_token = b;
+    return AXIS2_SUCCESS;
+}
+
+axis2_bool_t AXIS2_CALL
+axis2_woden_property_has_value_token(
+        void *property,
+        axis2_env_t **env)
+{
+    axis2_woden_property_impl_t *property_impl = NULL;
+    axis2_hash_t *super = NULL;
+
+    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    super = AXIS2_WODEN_PROPERTY_SUPER_OBJS(property, env);
+    property_impl = INTF_TO_IMPL(axis2_hash_get(super, 
+                "AXIS2_WODEN_PROPERTY", AXIS2_HASH_KEY_STRING));
+
+    return property_impl->f_has_value_token;
+}
+
+



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org