Files | |
file | axis2_ctx.h |
Classes | |
struct | axis2_ctx_ops |
struct | axis2_ctx |
Defines | |
#define | AXIS2_CTX_SET_PROPERTY(ctx, env, key, value, persistent) ((ctx)->ops->set_property(ctx, env, key, value, persistent)) |
#define | AXIS2_CTX_GET_PROPERTY(ctx, env, key, persistent) ((ctx)->ops->get_property(ctx, env, key, persistent)) |
#define | AXIS2_CTX_GET_NON_PERSISTANT_MAP(ctx, env) ((ctx)->ops->get_non_persistent_map(ctx, env)) |
#define | AXIS2_CTX_GET_ALL_PROPERTIES(ctx, env) ((ctx)->ops->get_all_properties(ctx, env)) |
#define | AXIS2_CTX_GET_PERSISTANT_MAP(ctx, env) ((ctx)->ops->get_persistent_map(ctx, env)) |
#define | AXIS2_CTX_SET_NON_PERSISTANT_MAP(ctx, env, map) ((ctx)->ops->set_non_persistent_map(ctx, env, map)) |
#define | AXIS2_CTX_SET_PERSISTANT_MAP(ctx, env, map) ((ctx)->ops->set_persistent_map(ctx, env, map)) |
#define | AXIS2_CTX_FREE(ctx, env) ((ctx)->ops->free (ctx, env)) |
Typedefs | |
typedef axis2_ctx_ops | axis2_ctx_ops_t |
typedef axis2_ctx | axis2_ctx_t |
Functions | |
AXIS2_EXTERN axis2_ctx_t * | axis2_ctx_create (const axis2_env_t *env) |
#define AXIS2_CTX_FREE | ( | ctx, | |||
env | ) | ((ctx)->ops->free (ctx, env)) |
Frees the context.
#define AXIS2_CTX_GET_ALL_PROPERTIES | ( | ctx, | |||
env | ) | ((ctx)->ops->get_all_properties(ctx, env)) |
Gets all properties.
#define AXIS2_CTX_GET_NON_PERSISTANT_MAP | ( | ctx, | |||
env | ) | ((ctx)->ops->get_non_persistent_map(ctx, env)) |
Gets non persistent map of properties.
#define AXIS2_CTX_GET_PERSISTANT_MAP | ( | ctx, | |||
env | ) | ((ctx)->ops->get_persistent_map(ctx, env)) |
Gets persistent map of properties.
#define AXIS2_CTX_GET_PROPERTY | ( | ctx, | |||
env, | |||||
key, | |||||
persistent | ) | ((ctx)->ops->get_property(ctx, env, key, persistent)) |
Gets property with given key.
#define AXIS2_CTX_SET_NON_PERSISTANT_MAP | ( | ctx, | |||
env, | |||||
map | ) | ((ctx)->ops->set_non_persistent_map(ctx, env, map)) |
Sets non persistent map of properties.
#define AXIS2_CTX_SET_PERSISTANT_MAP | ( | ctx, | |||
env, | |||||
map | ) | ((ctx)->ops->set_persistent_map(ctx, env, map)) |
Sets persistent map of properties.
#define AXIS2_CTX_SET_PROPERTY | ( | ctx, | |||
env, | |||||
key, | |||||
value, | |||||
persistent | ) | ((ctx)->ops->set_property(ctx, env, key, value, persistent)) |
Sets property with given key.
typedef struct axis2_ctx_ops axis2_ctx_ops_t |
Type name for struct axis2_ctx_ops
typedef struct axis2_ctx axis2_ctx_t |
Type name for struct axis2_ctx
AXIS2_EXTERN axis2_ctx_t* axis2_ctx_create | ( | const axis2_env_t * | env | ) |
Creates a context struct.
env | pointer to environment struct |