diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-05-11 16:47:33 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-05-11 16:47:33 +0000 |
| commit | 2e5edf85b8c23ef73069dbd37e453c7e2d30545a (patch) | |
| tree | 9f7e71980db2fab4900f5e885c8b75fc831535e5 /python/lassomod.c | |
| parent | 6d63bd7cfe78477e39d9557e070f589cb4f3052e (diff) | |
| download | lasso-2e5edf85b8c23ef73069dbd37e453c7e2d30545a.tar.gz lasso-2e5edf85b8c23ef73069dbd37e453c7e2d30545a.tar.xz lasso-2e5edf85b8c23ef73069dbd37e453c7e2d30545a.zip | |
name identifer mapping c and python binding updates
Diffstat (limited to 'python/lassomod.c')
| -rw-r--r-- | python/lassomod.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index 30e048ca..fa9fae8e 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -33,6 +33,7 @@ #include "xml/py_lib_logout_request.h" #include "xml/py_lib_logout_response.h" #include "xml/py_lib_name_identifier_mapping_request.h" +#include "xml/py_lib_name_identifier_mapping_response.h" #include "xml/py_lib_register_name_identifier_request.h" #include "xml/py_saml_assertion.h" #include "xml/py_saml_authentication_statement.h" @@ -100,6 +101,9 @@ static PyMethodDef lasso_methods[] = { {"lib_name_identifier_mapping_request_new", lib_name_identifier_mapping_request_new, METH_VARARGS}, {"lib_name_identifier_mapping_request_set_consent", lib_name_identifier_mapping_request_set_consent, METH_VARARGS}, + /* py_lib_name_identifier_mapping_response.h */ + {"lib_name_identifier_mapping_response_new", lib_name_identifier_mapping_response_new, METH_VARARGS}, + /* py_lib_register_name_identifier_request.h */ {"lib_register_name_identifier_request_new", lib_register_name_identifier_request_new, METH_VARARGS}, {"lib_register_name_identifier_request_set_relayState", lib_register_name_identifier_request_set_relayState, METH_VARARGS}, @@ -150,10 +154,16 @@ static PyMethodDef lasso_methods[] = { {"logout_response_new_from_query", logout_response_new_from_query, METH_VARARGS}, /* py_name_identifier_mapping_request.h */ - {"name_identifier_mapping_request_new", name_identifier_mapping_request_new, METH_VARARGS}, + {"name_identifier_mapping_request_new", name_identifier_mapping_request_new, METH_VARARGS}, + {"name_identifier_mapping_request_new_from_soap", name_identifier_mapping_request_new_from_soap, METH_VARARGS}, + {"name_identifier_mapping_request_new_from_query", name_identifier_mapping_request_new_from_query, METH_VARARGS}, /* py_name_identifier_mapping_response.h */ - {"name_identifier_mapping_response_new", name_identifier_mapping_response_new, METH_VARARGS}, + {"name_identifier_mapping_response_new_from_request_soap", name_identifier_mapping_response_new_from_request_soap, METH_VARARGS}, + {"name_identifier_mapping_response_new_from_soap", name_identifier_mapping_response_new_from_soap, METH_VARARGS}, + {"name_identifier_mapping_response_new_from_dump", name_identifier_mapping_response_new_from_dump, METH_VARARGS}, + {"name_identifier_mapping_response_new_from_request_query", name_identifier_mapping_response_new_from_request_query, METH_VARARGS}, + {"name_identifier_mapping_response_new_from_query", name_identifier_mapping_response_new_from_query, METH_VARARGS}, /* py_register_name_identifier_request.h */ {"register_name_identifier_request_new", register_name_identifier_request_new, METH_VARARGS}, |
