00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef SANDESHA2_SEQ_H
00018 #define SANDESHA2_SEQ_H
00019
00025 #include <axiom_soap_envelope.h>
00026 #include <sandesha2_identifier.h>
00027 #include <sandesha2_msg_number.h>
00028 #include <sandesha2_last_msg.h>
00029 #include <sandesha2_error.h>
00030
00031
00032 #ifdef __cplusplus
00033 extern "C"
00034 {
00035 #endif
00036
00042 typedef struct sandesha2_seq_t sandesha2_seq_t;
00043
00049 AXIS2_EXTERN sandesha2_seq_t* AXIS2_CALL
00050 sandesha2_seq_create(
00051 const axutil_env_t *env,
00052 axis2_char_t *ns_value);
00053
00054 axis2_status_t AXIS2_CALL
00055 sandesha2_seq_free_void_arg(
00056 void *seq,
00057 const axutil_env_t *env);
00058
00059 axis2_status_t AXIS2_CALL
00060 sandesha2_seq_free (
00061 sandesha2_seq_t *seq,
00062 const axutil_env_t *env);
00063
00064 axis2_char_t* AXIS2_CALL
00065 sandesha2_seq_get_namespace_value (
00066 sandesha2_seq_t *seq,
00067 const axutil_env_t *env);
00068
00069 sandesha2_identifier_t * AXIS2_CALL
00070 sandesha2_seq_get_identifier(
00071 sandesha2_seq_t *seq,
00072 const axutil_env_t *env);
00073
00074 axis2_status_t AXIS2_CALL
00075 sandesha2_seq_set_identifier(
00076 sandesha2_seq_t *seq,
00077 const axutil_env_t *env,
00078 sandesha2_identifier_t *identifier);
00079
00080 sandesha2_msg_number_t * AXIS2_CALL
00081 sandesha2_seq_get_msg_num(
00082 sandesha2_seq_t *seq,
00083 const axutil_env_t *env);
00084
00085 axis2_status_t AXIS2_CALL
00086 sandesha2_seq_set_msg_num(
00087 sandesha2_seq_t *seq,
00088 const axutil_env_t *env,
00089 sandesha2_msg_number_t *msg_num);
00090
00091 sandesha2_last_msg_t * AXIS2_CALL
00092 sandesha2_seq_get_last_msg(
00093 sandesha2_seq_t *seq,
00094 const axutil_env_t *env);
00095
00096 axis2_status_t AXIS2_CALL
00097 sandesha2_seq_set_last_msg(
00098 sandesha2_seq_t *seq,
00099 const axutil_env_t *env,
00100 sandesha2_last_msg_t *last_msg);
00101
00102 axis2_bool_t AXIS2_CALL
00103 sandesha2_seq_is_must_understand(
00104 sandesha2_seq_t *seq,
00105 const axutil_env_t *env);
00106
00107 axis2_status_t AXIS2_CALL
00108 sandesha2_seq_set_must_understand(
00109 sandesha2_seq_t *seq,
00110 const axutil_env_t *env, axis2_bool_t mu);
00111
00112 axis2_status_t AXIS2_CALL
00113 sandesha2_seq_to_soap_envelope(
00114 sandesha2_seq_t *seq,
00115 const axutil_env_t *env,
00116 axiom_soap_envelope_t *envelope);
00117
00118 void* AXIS2_CALL
00119 sandesha2_seq_from_om_node(
00120 sandesha2_seq_t *seq,
00121 const axutil_env_t *env,
00122 axiom_node_t *om_node);
00123
00124 axiom_node_t* AXIS2_CALL
00125 sandesha2_seq_to_om_node(
00126 sandesha2_seq_t *seq,
00127 const axutil_env_t *env,
00128 void *om_node);
00129
00131 #ifdef __cplusplus
00132 }
00133 #endif
00134
00135 #endif
00136