diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-04-20 11:50:36 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-04-20 11:50:36 +0000 |
| commit | 11d9dc4e60e7d1ebf5468c95c4446ca7fff9eb5f (patch) | |
| tree | b5095869cb679ffd2553c9995d10bd8063068dde /python/lassomod.c | |
| parent | 85b629d971c7ba1fd0cc4823787acf90ae2f2cb2 (diff) | |
| download | lasso-11d9dc4e60e7d1ebf5468c95c4446ca7fff9eb5f.tar.gz lasso-11d9dc4e60e7d1ebf5468c95c4446ca7fff9eb5f.tar.xz lasso-11d9dc4e60e7d1ebf5468c95c4446ca7fff9eb5f.zip | |
add RegisterNameIdentifierRequest class
Diffstat (limited to 'python/lassomod.c')
| -rw-r--r-- | python/lassomod.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index dee23736..688efa0b 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -28,6 +28,7 @@ #include "xml/py_xml.h" #include "protocols/py_logout.h" #include "protocols/py_single_sign_on_and_federation.h" +#include "protocols/py_register_name_identifier.h" static PyMethodDef lasso_methods[] = { /* py_lasso.h */ @@ -74,6 +75,10 @@ static PyMethodDef lasso_methods[] = { {"response_init", response_init, METH_VARARGS}, {"response_add_assertion", response_add_assertion, METH_VARARGS}, + /* py_register_name_identifier.h */ + {"register_name_identifier_request_getattr", register_name_identifier_request_getattr, METH_VARARGS}, + {"register_name_identifier_request_create", register_name_identifier_request_create, METH_VARARGS}, + {NULL, NULL} /* End of Methods Sentinel */ }; |
