Files | |
file | axis2_relates_to.h |
Typedefs | |
typedef struct axis2_relates_to | axis2_relates_to_t |
Functions | |
AXIS2_EXTERN axis2_relates_to_t * | axis2_relates_to_create (const axutil_env_t *env, const axis2_char_t *value, const axis2_char_t *relationship_type) |
AXIS2_EXTERN const axis2_char_t * | axis2_relates_to_get_value (const axis2_relates_to_t *relates_to, const axutil_env_t *env) |
AXIS2_EXTERN axis2_status_t | axis2_relates_to_set_value (struct axis2_relates_to *relates_to, const axutil_env_t *env, const axis2_char_t *value) |
AXIS2_EXTERN const axis2_char_t * | axis2_relates_to_get_relationship_type (const axis2_relates_to_t *relates_to, const axutil_env_t *env) |
AXIS2_EXTERN axis2_status_t | axis2_relates_to_set_relationship_type (struct axis2_relates_to *relates_to, const axutil_env_t *env, const axis2_char_t *relationship_type) |
AXIS2_EXTERN void | axis2_relates_to_free (struct axis2_relates_to *relates_to, const axutil_env_t *env) |
typedef struct axis2_relates_to axis2_relates_to_t |
Type name for struct axis2_relates_to
AXIS2_EXTERN axis2_relates_to_t* axis2_relates_to_create | ( | const axutil_env_t * | env, | |
const axis2_char_t * | value, | |||
const axis2_char_t * | relationship_type | |||
) |
creates relates to struct.
env | pointer to environment struct | |
value | value string | |
relationship_type | relationship type string |
AXIS2_EXTERN void axis2_relates_to_free | ( | struct axis2_relates_to * | relates_to, | |
const axutil_env_t * | env | |||
) |
Frees relates to struct.
relates_to | pointer to relates to struct | |
env | pointer to environment struct |
AXIS2_EXTERN const axis2_char_t* axis2_relates_to_get_relationship_type | ( | const axis2_relates_to_t * | relates_to, | |
const axutil_env_t * | env | |||
) |
Gets relationship type.
relates_to | pointer to relates to struct | |
env | pointer to environment struct |
AXIS2_EXTERN const axis2_char_t* axis2_relates_to_get_value | ( | const axis2_relates_to_t * | relates_to, | |
const axutil_env_t * | env | |||
) |
Gets value. The value field represents the URI that corresponds to the related message's message ID
relates_to | pointer to relates to struct | |
env | pointer to environment struct |
AXIS2_EXTERN axis2_status_t axis2_relates_to_set_relationship_type | ( | struct axis2_relates_to * | relates_to, | |
const axutil_env_t * | env, | |||
const axis2_char_t * | relationship_type | |||
) |
Sets relationship type.
relates_to | pointer to relates to struct | |
env | pointer to environment struct | |
relationship_type | relationship type string |
AXIS2_EXTERN axis2_status_t axis2_relates_to_set_value | ( | struct axis2_relates_to * | relates_to, | |
const axutil_env_t * | env, | |||
const axis2_char_t * | value | |||
) |
Sets value. The value field represents the URI that corresponds to the related message's message ID
relates_to | pointer to relates to struct | |
env | pointer to environment struct | |
value | value string |