blob: 8d48679f2fe924c105a332db900b81c7eca0d9e1 [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 WODEN_WSDL_REF_H
#define WODEN_WSDL_REF_H
/**
* @file woden_wsdl_ref.h
* @brief Axis2 Wsdl Ref Interface
* This abstract class defines the common behaviour for referencing WSDL
* documents via the <wsdl:import> and <wsdl:include> elements.
* It is extended by the concrete implementation classes for those two elements.
*
*
*/
#include <woden.h>
#include <woden_wsdl_element.h>
#include <woden_wsdl_component.h>
/** @defgroup woden_wsdl_ref Wsdl Ref
* @ingroup woden
* @{
*/
typedef union woden_wsdl_ref_base woden_wsdl_ref_base_t;
typedef struct woden_wsdl_ref woden_wsdl_ref_t;
typedef struct woden_wsdl_ref_ops woden_wsdl_ref_ops_t;
struct woden_component_exts;
#ifdef __cplusplus
extern "C"
{
#endif
struct woden_wsdl_ref_ops
{
/**
* Deallocate memory
* @return status code
*/
axis2_status_t (AXIS2_CALL *
free) (
void *wsdl_ref,
const axis2_env_t *env);
axis2_hash_t *(AXIS2_CALL *
super_objs) (
void *wsdl_ref,
const axis2_env_t *env);
woden_obj_types_t (AXIS2_CALL *
type) (
void *wsdl_ref,
const axis2_env_t *env);
/**
* @return the base implementation class
*/
woden_wsdl_element_t *(AXIS2_CALL *
get_base_impl) (
void *wsdl_ref,
const axis2_env_t *env);
axis2_uri_t *(AXIS2_CALL *
get_location) (
void *wsdl_ref,
const axis2_env_t *env);
axis2_status_t (AXIS2_CALL *
set_location) (
void *wsdl_ref,
const axis2_env_t *env,
axis2_uri_t *loc_uri);
void *(AXIS2_CALL *
get_desc_element) (
void *wsdl_ref,
const axis2_env_t *env);
axis2_status_t (AXIS2_CALL *
set_desc_element) (
void *wsdl_ref,
const axis2_env_t *env,
void *desc);
axis2_status_t (AXIS2_CALL *
add_documentation_element) (
void *wsdl_ref,
const axis2_env_t *env,
void *doc_el);
axis2_array_list_t *(AXIS2_CALL *
get_documentation_elements) (
void *wsdl_ref,
const axis2_env_t *env);
};
struct woden_wsdl_ref
{
woden_wsdl_element_t wsdl_element;
woden_wsdl_ref_ops_t *ops;
};
AXIS2_EXTERN woden_wsdl_ref_t * AXIS2_CALL
woden_wsdl_ref_create(
const axis2_env_t *env);
/************************Woden C Internal Methods******************************/
AXIS2_EXTERN axis2_status_t AXIS2_CALL
woden_wsdl_ref_resolve_methods(
woden_wsdl_ref_t *wsdl_ref,
const axis2_env_t *env,
woden_wsdl_ref_t *wsdl_ref_impl,
axis2_hash_t *methods);
/************************End of Woden C Internal Methods***********************/
#define WODEN_WSDL_REF_FREE(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->free(wsdl_ref, env))
#define WODEN_WSDL_REF_SUPER_OBJS(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->super_objs(wsdl_ref, env))
#define WODEN_WSDL_REF_TYPE(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->type(wsdl_ref, env))
#define WODEN_WSDL_REF_GET_BASE_IMPL(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->get_base_impl(wsdl_ref, env))
#define WODEN_WSDL_REF_GET_LOCATION(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->\
get_location (wsdl_ref, env))
#define WODEN_WSDL_REF_SET_LOCATION(wsdl_ref, env, loc_uri) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->\
set_location(wsdl_ref, env, loc_uri))
#define WODEN_WSDL_REF_GET_DESC_ELEMENT(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->\
get_desc_element (wsdl_ref, env))
#define WODEN_WSDL_REF_SET_DESC_ELEMENT(wsdl_ref, env, desc) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->\
set_desc_element(wsdl_ref, env, desc))
#define WODEN_WSDL_REF_ADD_DOCUMENTATION_ELEMENT(wsdl_ref, env, doc_el) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->\
add_documentation_element (wsdl_ref, env, doc_el))
#define WODEN_WSDL_REF_GET_DOCUMENTATION_ELEMENTS(wsdl_ref, env) \
(((woden_wsdl_ref_t *) wsdl_ref)->ops->\
get_documentation_elements(wsdl_ref, env))
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* WODEN_WSDL_REF_H */