00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef RP_USERNAME_TOKEN_H
00018 #define RP_USERNAME_TOKEN_H
00019
00025 #include <rp_includes.h>
00026
00027 #ifdef __cplusplus
00028 extern "C"
00029 {
00030 #endif
00031
00032 typedef struct rp_username_token_t rp_username_token_t;
00033
00034 AXIS2_EXTERN rp_username_token_t *AXIS2_CALL
00035 rp_username_token_create(const axutil_env_t *env);
00036
00037 AXIS2_EXTERN void AXIS2_CALL
00038 rp_username_token_free(
00039 rp_username_token_t *username_token,
00040 const axutil_env_t *env);
00041
00042 AXIS2_EXTERN axis2_char_t *AXIS2_CALL
00043 rp_username_token_get_inclusion(
00044 rp_username_token_t *username_token,
00045 const axutil_env_t *env);
00046
00047 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00048 rp_username_token_set_inclusion(
00049 rp_username_token_t *username_token,
00050 const axutil_env_t *env,
00051 axis2_char_t *inclusion);
00052
00053 AXIS2_EXTERN axis2_bool_t AXIS2_CALL
00054 rp_username_token_get_derivedkeys(
00055 rp_username_token_t *username_token,
00056 const axutil_env_t *env);
00057
00058 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00059 rp_username_token_set_derivedkeys(
00060 rp_username_token_t *username_token,
00061 const axutil_env_t *env,
00062 axis2_bool_t derivedkeys);
00063
00064 AXIS2_EXTERN axis2_bool_t AXIS2_CALL
00065 rp_username_token_get_useUTprofile10(
00066 rp_username_token_t *username_token,
00067 const axutil_env_t *env);
00068
00069 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00070 rp_username_token_set_useUTprofile10(
00071 rp_username_token_t *username_token,
00072 const axutil_env_t *env,
00073 axis2_bool_t useUTprofile10);
00074
00075 AXIS2_EXTERN axis2_bool_t AXIS2_CALL
00076 rp_username_token_get_useUTprofile11(
00077 rp_username_token_t *username_token,
00078 const axutil_env_t *env);
00079
00080 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00081 rp_username_token_set_useUTprofile11(
00082 rp_username_token_t *username_token,
00083 const axutil_env_t *env,
00084 axis2_bool_t useUTprofile11);
00085
00086 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00087 rp_username_token_increment_ref(
00088 rp_username_token_t *username_token,
00089 const axutil_env_t *env);
00090
00091
00092 #ifdef __cplusplus
00093 }
00094 #endif
00095 #endif