summaryrefslogtreecommitdiffstats
path: root/python/environs/py_identity.h
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-30 10:16:41 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-30 10:16:41 +0000
commit006e1abcabab74d767bedf735e2e846bf742fca7 (patch)
treef00d3f95d3d0dadf5879761165f5aedd616b62ba /python/environs/py_identity.h
parent6aa5b4bf928258e2e8bbe656a0c3826349358acb (diff)
downloadlasso-006e1abcabab74d767bedf735e2e846bf742fca7.tar.gz
lasso-006e1abcabab74d767bedf735e2e846bf742fca7.tar.xz
lasso-006e1abcabab74d767bedf735e2e846bf742fca7.zip
Initial commit
Diffstat (limited to 'python/environs/py_identity.h')
-rw-r--r--python/environs/py_identity.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/python/environs/py_identity.h b/python/environs/py_identity.h
new file mode 100644
index 00000000..dbcfe368
--- /dev/null
+++ b/python/environs/py_identity.h
@@ -0,0 +1,50 @@
+/* $Id$
+ *
+ * PyLasso -- Python bindings for Lasso library
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.entrouvert.org
+ *
+ * Authors: Nicolas Clapies <nclapies@entrouvert.com>
+ * Valery Febvre <vfebvre@easter-eggs.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __PYLASSO_PY_IDENTITY_H__
+#define __PYLASSO_PY_IDENTITY_H__
+
+#include <lasso/environs/identity.h>
+
+typedef struct {
+ PyObject_HEAD
+ LassoIdentity *obj;
+} LassoIdentity_object;
+
+#define LassoIdentity_get(v) (((v) == Py_None) ? NULL : (((LassoIdentity_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
+PyObject *LassoIdentity_wrap(LassoIdentity *identity);
+
+PyObject *identity_new(PyObject *self, PyObject *args);
+PyObject *identity_new_from_dump(PyObject *self, PyObject *args);
+
+PyObject *identity_add_assertion(PyObject *self, PyObject *args);
+PyObject *identity_destroy(PyObject *self, PyObject *args);
+PyObject *identity_dump(PyObject *self, PyObject *args);
+PyObject *identity_get_assertion(PyObject *self, PyObject *args);
+PyObject *identity_get_authentication_method(PyObject *self, PyObject *args);
+PyObject *identity_get_next_assertion_remote_providerID(PyObject *self, PyObject *args);
+PyObject *identity_remove_assertion(PyObject *self, PyObject *args);
+
+#endif /* __PYLASSO_PY_IDENTITY_H__ */