blob: 125e210c5d7902c92743983d866418414d525c89 [file] [log] [blame]
/*
* 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_BINDING_FAULT_H
#define AXIS2_BINDING_FAULT_H
/**
* @file axis2_binding_fault.h
* @brief Axis2 Wsdl property interface
*/
#include <axis2.h>
#include <axis2_error.h>
#include <axis2_defines.h>
#include <axis2_env.h>
#include <axis2_allocator.h>
#include <axis2_qname.h>
#include <axis2_wsdl_extensible_component.h>
#ifdef __cplusplus
extern "C"
{
#endif
typedef struct axis2_wsdl_binding_fault axis2_wsdl_binding_fault_t;
typedef struct axis2_wsdl_binding_fault_ops axis2_wsdl_binding_fault_ops_t;
/** @defgroup axis2_binding_fault Wsdl Binding Fault
* @ingroup axis2_wsdl
* @{
*/
/**
* @brief Wsdl Binding Fault operations struct
* Encapsulator struct for operations of axis2_binding_fault
*/
AXIS2_DECLARE_DATA struct axis2_wsdl_binding_fault_ops
{
/** De-allocate memory
* @return status code
*/
axis2_status_t (AXIS2_CALL *
free)(axis2_wsdl_binding_fault_t *binding_fault,
axis2_env_t **env);
/**
* Method getRef
*
* @return
*/
axis2_qname_t *(AXIS2_CALL *
get_ref) (axis2_wsdl_binding_fault_t *binding_fault,
axis2_env_t **env);
/**
* Method setRef
*
* @param ref
*/
axis2_status_t (AXIS2_CALL *
set_ref)(axis2_wsdl_binding_fault_t *binding_fault,
axis2_env_t **env,
axis2_qname_t *ref);
};
/**
* @brief Wsdl binding fault struct
*/
AXIS2_DECLARE_DATA struct axis2_wsdl_binding_fault
{
axis2_wsdl_binding_fault_ops_t *ops;
axis2_wsdl_extensible_component_t *extensible_component;
};
/**
* Creates wsdl binding fault struct
* @return pointer to newly created wsdl binding fault
*/
AXIS2_DECLARE(axis2_wsdl_binding_fault_t *)
axis2_binding_fault_create (axis2_env_t **env);
/*************************** Function macros **********************************/
#define AXIS2_WSDL_BINDING_FAULT_FREE(binding_fault, env) \
((binding_fault->ops)->free (binding_fault, env))
#define AXIS2_WSDL_BINDING_FAULT_GET_REF(binding_fault, env) \
((binding_fault->ops)->get_ref (binding_fault, env))
#define AXIS2_WSDL_BINDING_FAULT_SET_REF(binding_fault, env, ref) \
((binding_fault->ops)->set_ref (binding_fault, env, ref))
/*************************** End of function macros ***************************/
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* AXIS2_BINDING_FAULT_H */