woden_wsdl10_soap_binding_op_exts.h

Go to the documentation of this file.
00001 /*
00002  * Licensed to the Apache Software Foundation (ASF) under one or more
00003  * contributor license agreements.  See the NOTICE file distributed with
00004  * this work for additional information regarding copyright ownership.
00005  * The ASF licenses this file to You under the Apache License, Version 2.0
00006  * (the "License"); you may not use this file except in compliance with
00007  * the License.  You may obtain a copy of the License at
00008  *
00009  *      http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 
00018 #ifndef WODEN_WSDL10_SOAP_BINDING_OP_EXTS_H
00019 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_H
00020 
00037 #include <woden.h>
00038 #include <woden_component_exts.h>
00039 #include <axis2_array_list.h>
00040 
00046 typedef union woden_wsdl10_soap_binding_op_exts_base woden_wsdl10_soap_binding_op_exts_base_t;
00047 typedef struct woden_wsdl10_soap_binding_op_exts woden_wsdl10_soap_binding_op_exts_t;
00048 typedef struct woden_wsdl10_soap_binding_op_exts_ops woden_wsdl10_soap_binding_op_exts_ops_t;
00049 
00050 
00051 #ifdef __cplusplus
00052 extern "C"
00053 {
00054 #endif
00055 
00056 struct woden_wsdl10_soap_binding_op_exts_ops
00057 {
00062     axis2_status_t (AXIS2_CALL *
00063     free) (void *soap_binding_op_exts,
00064             const axis2_env_t *env);
00065 
00066     axis2_hash_t *(AXIS2_CALL *
00067     super_objs) (void *soap_binding_op_exts,
00068             const axis2_env_t *env);
00069 
00070     woden_obj_types_t (AXIS2_CALL *
00071     type) (void *soap_binding_op_exts,
00072             const axis2_env_t *env);
00076     struct woden_component_exts *(AXIS2_CALL *
00077     get_base_impl) (
00078             void *soap_binding_op_exts,
00079             const axis2_env_t *env);
00080 
00081     axis2_uri_t *(AXIS2_CALL *
00082     get_soap_mep) (
00083             void *binding_op_exts,
00084             const axis2_env_t *env);
00085 
00086     axis2_status_t (AXIS2_CALL *
00087     set_soap_action) (
00088             void *binding_op_exts,
00089             const axis2_env_t *env,
00090             axis2_uri_t *action);
00091 
00092     axis2_uri_t *(AXIS2_CALL *
00093     get_soap_action) (
00094             void *binding_op_exts,
00095             const axis2_env_t *env); 
00096 
00097     axis2_array_list_t *(AXIS2_CALL *
00098     get_soap_modules) (
00099             void *binding_op_exts,
00100             const axis2_env_t *env);
00101 
00102 };
00103 
00104 struct woden_wsdl10_soap_binding_op_exts
00105 {
00106     woden_component_exts_t component_exts;
00107     woden_wsdl10_soap_binding_op_exts_ops_t *ops;
00108 };
00109 
00110 AXIS2_EXTERN woden_wsdl10_soap_binding_op_exts_t * AXIS2_CALL
00111 woden_wsdl10_soap_binding_op_exts_create(
00112         const axis2_env_t *env);
00113 
00114 
00115 /***************************Woden C Internal Methods***************************/
00116 AXIS2_EXTERN woden_wsdl10_soap_binding_op_exts_t * AXIS2_CALL
00117 woden_wsdl10_soap_binding_op_exts_to_component_exts(
00118         void *soap_binding_op_exts,
00119         const axis2_env_t *env);
00120 
00121 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00122 woden_wsdl10_soap_binding_op_exts_resolve_methods(
00123         woden_wsdl10_soap_binding_op_exts_t *soap_binding_op_exts,
00124         const axis2_env_t *env,
00125         woden_wsdl10_soap_binding_op_exts_t *soap_binding_op_exts_impl,
00126         axis2_hash_t *methods);
00127 /************************End of Woden C Internal Methods***********************/
00128 
00129 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_FREE(soap_binding_op_exts, env) \
00130       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->free(soap_binding_op_exts, env))
00131 
00132 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_SUPER_OBJS(soap_binding_op_exts, env) \
00133       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->super_objs(soap_binding_op_exts, env))
00134 
00135 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_TYPE(soap_binding_op_exts, env) \
00136       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->type(soap_binding_op_exts, env))
00137 
00138 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_GET_BASE_IMPL(soap_binding_op_exts, env) \
00139       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->get_base_impl(soap_binding_op_exts, env))
00140 
00141 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_GET_SOAP_MEP(soap_binding_op_exts, env) \
00142       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->\
00143         get_soap_mep (soap_binding_op_exts, env))
00144 
00145 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_SET_SOAP_ACTION(soap_binding_op_exts, env, action) \
00146       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->\
00147         set_soap_action (soap_binding_op_exts, env, action))
00148 
00149 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_GET_SOAP_ACTION(soap_binding_op_exts, env) \
00150       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->\
00151         get_soap_action (soap_binding_op_exts, env))
00152 
00153 #define WODEN_WSDL10_SOAP_BINDING_OP_EXTS_GET_SOAP_MODULES(soap_binding_op_exts, env) \
00154       (((woden_wsdl10_soap_binding_op_exts_t *) soap_binding_op_exts)->ops->\
00155         get_soap_modules (soap_binding_op_exts, env))
00156 
00158 #ifdef __cplusplus
00159 }
00160 #endif
00161 #endif /* WODEN_WSDL10_SOAP_BINDING_OP_EXTS_H */

Generated on Wed Dec 20 20:34:50 2006 for Axis2/C by  doxygen 1.5.1