diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2005-09-19 14:41:55 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2005-09-19 14:41:55 +0000 |
| commit | afc8308cd94cac5e77499191e41e34c6bf42a155 (patch) | |
| tree | 629b7c139d0fb7de2da9007df97eb2a63e461157 | |
| parent | 3153eb85912e9bf9faecdac47adbed7ce2d4fa89 (diff) | |
| download | lasso-afc8308cd94cac5e77499191e41e34c6bf42a155.tar.gz lasso-afc8308cd94cac5e77499191e41e34c6bf42a155.tar.xz lasso-afc8308cd94cac5e77499191e41e34c6bf42a155.zip | |
Added optional param security_mech_id for wsf methods.
| -rw-r--r-- | swig/Lasso-wsf.i | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/swig/Lasso-wsf.i b/swig/Lasso-wsf.i index bc9af184..2d1f727f 100644 --- a/swig/Lasso-wsf.i +++ b/swig/Lasso-wsf.i @@ -246,7 +246,7 @@ typedef struct { /* Methods */ THROW_ERROR - int initInsert(LassoDiscoResourceOffering *newOffering); + int initInsert(LassoDiscoResourceOffering *newOffering, const char *security_mech_id = NULL); END_THROW_ERROR THROW_ERROR @@ -273,7 +273,7 @@ typedef struct { END_THROW_ERROR THROW_ERROR - int initQuery(); + int initQuery(const char *security_mech_id); END_THROW_ERROR THROW_ERROR @@ -285,7 +285,7 @@ typedef struct { END_THROW_ERROR THROW_ERROR - int processQueryMsg(char *query_msg); + int processQueryMsg(char *query_msg, const char *security_mech_id = NULL); END_THROW_ERROR THROW_ERROR @@ -591,13 +591,13 @@ typedef struct { /* Methods inherited from ProfileService */ THROW_ERROR - gint initQuery(const char *select = NULL, const char *item_id = NULL); + gint initQuery(const char *select = NULL, const char *item_id = NULL, const char *security_mech_id = NULL); END_THROW_ERROR LassoDstQueryItem *addQueryItem(const char *select, const char *item_id); THROW_ERROR - int processQueryMsg(const char *message); + int processQueryMsg(const char *message, const char *security_mech_id = NULL); END_THROW_ERROR THROW_ERROR @@ -779,13 +779,13 @@ typedef struct { /* Methods */ THROW_ERROR - gint initQuery(const char *select = NULL, const char *item_id = NULL); + gint initQuery(const char *select = NULL, const char *item_id = NULL, const char *security_mech_id = NULL); END_THROW_ERROR LassoDstQueryItem *addQueryItem(const char *select, const char *item_id); THROW_ERROR - int processQueryMsg(const char *message); + int processQueryMsg(const char *message, const char *security_mech_id = NULL); END_THROW_ERROR THROW_ERROR |
