sandesha2_seq.h
Go to the documentation of this file.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_EXTERN sandesha2_seq_t* AXIS2_CALL
00055 sandesha2_seq_clone(
00056 const axutil_env_t *env,
00057 sandesha2_seq_t *sequence);
00058
00059 axis2_status_t AXIS2_CALL
00060 sandesha2_seq_free_void_arg(
00061 void *seq,
00062 const axutil_env_t *env);
00063
00064 axis2_status_t AXIS2_CALL
00065 sandesha2_seq_free (
00066 sandesha2_seq_t *seq,
00067 const axutil_env_t *env);
00068
00069 axis2_char_t* AXIS2_CALL
00070 sandesha2_seq_get_namespace_value (
00071 sandesha2_seq_t *seq,
00072 const axutil_env_t *env);
00073
00074 sandesha2_identifier_t * AXIS2_CALL
00075 sandesha2_seq_get_identifier(
00076 sandesha2_seq_t *seq,
00077 const axutil_env_t *env);
00078
00079 axis2_status_t AXIS2_CALL
00080 sandesha2_seq_set_identifier(
00081 sandesha2_seq_t *seq,
00082 const axutil_env_t *env,
00083 sandesha2_identifier_t *identifier);
00084
00085 sandesha2_msg_number_t * AXIS2_CALL
00086 sandesha2_seq_get_msg_num(
00087 sandesha2_seq_t *seq,
00088 const axutil_env_t *env);
00089
00090 axis2_status_t AXIS2_CALL
00091 sandesha2_seq_set_msg_num(
00092 sandesha2_seq_t *seq,
00093 const axutil_env_t *env,
00094 sandesha2_msg_number_t *msg_num);
00095
00096 sandesha2_last_msg_t * AXIS2_CALL
00097 sandesha2_seq_get_last_msg(
00098 sandesha2_seq_t *seq,
00099 const axutil_env_t *env);
00100
00101 axis2_status_t AXIS2_CALL
00102 sandesha2_seq_set_last_msg(
00103 sandesha2_seq_t *seq,
00104 const axutil_env_t *env,
00105 sandesha2_last_msg_t *last_msg);
00106
00107 axis2_bool_t AXIS2_CALL
00108 sandesha2_seq_is_must_understand(
00109 sandesha2_seq_t *seq,
00110 const axutil_env_t *env);
00111
00112 axis2_status_t AXIS2_CALL
00113 sandesha2_seq_set_must_understand(
00114 sandesha2_seq_t *seq,
00115 const axutil_env_t *env, axis2_bool_t mu);
00116
00117 axis2_status_t AXIS2_CALL
00118 sandesha2_seq_to_soap_envelope(
00119 sandesha2_seq_t *seq,
00120 const axutil_env_t *env,
00121 axiom_soap_envelope_t *envelope);
00122
00123 void* AXIS2_CALL
00124 sandesha2_seq_from_om_node(
00125 sandesha2_seq_t *seq,
00126 const axutil_env_t *env,
00127 axiom_node_t *om_node);
00128
00129 axiom_node_t* AXIS2_CALL
00130 sandesha2_seq_to_om_node(
00131 sandesha2_seq_t *seq,
00132 const axutil_env_t *env,
00133 void *om_node);
00134
00136 #ifdef __cplusplus
00137 }
00138 #endif
00139
00140 #endif
00141