Files | |
file | axis2_any_content_type.h |
Typedefs | |
typedef struct axis2_any_content_type | axis2_any_content_type_t |
Functions | |
AXIS2_EXTERN axis2_any_content_type_t * | axis2_any_content_type_create (const axutil_env_t *env) |
AXIS2_EXTERN axis2_status_t | axis2_any_content_type_add_value (axis2_any_content_type_t *any_content_type, const axutil_env_t *env, const axutil_qname_t *qname, const axis2_char_t *value) |
AXIS2_EXTERN const axis2_char_t * | axis2_any_content_type_get_value (const axis2_any_content_type_t *any_content_type, const axutil_env_t *env, const axutil_qname_t *qname) |
AXIS2_EXTERN axutil_hash_t * | axis2_any_content_type_get_value_map (const axis2_any_content_type_t *any_content_type, const axutil_env_t *env) |
AXIS2_EXTERN void | axis2_any_content_type_free (axis2_any_content_type_t *any_content_type, const axutil_env_t *env) |
typedef struct axis2_any_content_type axis2_any_content_type_t |
Type name for axis2_any_content_type
AXIS2_EXTERN axis2_status_t axis2_any_content_type_add_value | ( | axis2_any_content_type_t * | any_content_type, | |
const axutil_env_t * | env, | |||
const axutil_qname_t * | qname, | |||
const axis2_char_t * | value | |||
) |
Adds given value to content value map with given QName.
any_content_type | pointer to any content type struct | |
env | pointer to environment struct | |
qname | pointer to QName to be used as key | |
value | value string to be added |
AXIS2_EXTERN axis2_any_content_type_t* axis2_any_content_type_create | ( | const axutil_env_t * | env | ) |
Creates an instance of any content type struct.
env | pointer to environment struct |
AXIS2_EXTERN void axis2_any_content_type_free | ( | axis2_any_content_type_t * | any_content_type, | |
const axutil_env_t * | env | |||
) |
Frees any content type struct.
any_content_type | pointer to any content type struct | |
env | pointer to environment struct |
AXIS2_EXTERN const axis2_char_t* axis2_any_content_type_get_value | ( | const axis2_any_content_type_t * | any_content_type, | |
const axutil_env_t * | env, | |||
const axutil_qname_t * | qname | |||
) |
Gets the value corresponding to the given QName from the content value map.
any_content_type | pointer to any content type struct | |
env | pointer to environment struct | |
qname | pointer to QName of the corresponding value to be retrieved |
AXIS2_EXTERN axutil_hash_t* axis2_any_content_type_get_value_map | ( | const axis2_any_content_type_t * | any_content_type, | |
const axutil_env_t * | env | |||
) |
Gets the map of all values.
any_content_type | pointer to any content type struct | |
env | pointer to environment struct |