00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef SANDESHA2_SEQ_PROPERTY_BEAN_H
00018 #define SANDESHA2_SEQ_PROPERTY_BEAN_H
00019
00020 #include <axutil_utils_defines.h>
00021 #include <axutil_env.h>
00022 #include <sandesha2_rm_bean.h>
00023
00024 #ifdef __cplusplus
00025 extern "C"
00026 {
00027 #endif
00028
00029 typedef struct sandesha2_seq_property_bean sandesha2_seq_property_bean_t ;
00030 struct sandesha2_transaction;
00031
00032 AXIS2_DECLARE_DATA struct sandesha2_seq_property_bean
00033 {
00034 sandesha2_rm_bean_t rm_bean;
00035 };
00036
00037
00038
00039 AXIS2_EXTERN sandesha2_seq_property_bean_t* AXIS2_CALL
00040 sandesha2_seq_property_bean_create(
00041 const axutil_env_t *env);
00042
00043 AXIS2_EXTERN sandesha2_seq_property_bean_t* AXIS2_CALL
00044 sandesha2_seq_property_bean_create_with_data(
00045 const axutil_env_t *env,
00046 axis2_char_t *seq_id,
00047 axis2_char_t *prop_name,
00048 axis2_char_t *value);
00049
00050 void AXIS2_CALL
00051 sandesha2_seq_property_bean_free (
00052 sandesha2_rm_bean_t *seq_property,
00053 const axutil_env_t *env);
00054
00055 struct sandesha2_rm_bean * AXIS2_CALL
00056 sandesha2_seq_property_bean_get_base(
00057 sandesha2_rm_bean_t* seq_property,
00058 const axutil_env_t *env);
00059
00060 void AXIS2_CALL
00061 sandesha2_seq_property_bean_set_base (
00062 sandesha2_seq_property_bean_t *seq_property,
00063 const axutil_env_t *env,
00064 struct sandesha2_rm_bean* rm_bean);
00065
00066 axis2_char_t *AXIS2_CALL
00067 sandesha2_seq_property_bean_get_name (
00068 sandesha2_seq_property_bean_t *seq_property,
00069 const axutil_env_t *env);
00070
00071 void AXIS2_CALL
00072 sandesha2_seq_property_bean_set_name (
00073 sandesha2_seq_property_bean_t *seq_property,
00074 const axutil_env_t *env,
00075 axis2_char_t *name);
00076
00077 axis2_char_t *AXIS2_CALL
00078 sandesha2_seq_property_bean_get_seq_id (
00079 sandesha2_seq_property_bean_t *seq_property,
00080 const axutil_env_t *env);
00081
00082 void AXIS2_CALL
00083 sandesha2_seq_property_bean_set_seq_id (
00084 sandesha2_seq_property_bean_t *seq_property,
00085 const axutil_env_t *env,
00086 axis2_char_t *seq_id);
00087
00088 axis2_char_t* AXIS2_CALL
00089 sandesha2_seq_property_bean_get_value (
00090 sandesha2_seq_property_bean_t *seq_property,
00091 const axutil_env_t *env);
00092
00093 void AXIS2_CALL
00094 sandesha2_seq_property_bean_set_value (
00095 sandesha2_seq_property_bean_t *seq_property,
00096 const axutil_env_t *env,
00097 axis2_char_t *value);
00098
00099 void AXIS2_CALL
00100 sandesha2_seq_property_bean_set_id(
00101 sandesha2_rm_bean_t *seq_property_bean,
00102 const axutil_env_t *env,
00103 long id);
00104
00105 long AXIS2_CALL
00106 sandesha2_seq_property_bean_get_id(
00107 sandesha2_rm_bean_t *seq_property_bean,
00108 const axutil_env_t *env);
00109
00110 void AXIS2_CALL
00111 sandesha2_seq_property_bean_set_transaction(
00112 sandesha2_rm_bean_t *seq_property_bean,
00113 const axutil_env_t *env,
00114 struct sandesha2_transaction *transaction);
00115
00116 struct sandesha2_transaction *AXIS2_CALL
00117 sandesha2_seq_property_bean_get_transaction(
00118 sandesha2_rm_bean_t *seq_property_bean,
00119 const axutil_env_t *env);
00120
00121 #ifdef __cplusplus
00122 }
00123
00124 #endif
00125
00126 #endif