summaryrefslogtreecommitdiffstats
path: root/lasso
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2007-12-27 15:17:37 +0000
committerFrederic Peters <fpeters@entrouvert.com>2007-12-27 15:17:37 +0000
commit35333800036a052d3872ddbccfd0321c1813253b (patch)
tree04e64961c58ca961281bd628638ca4f14c920f8d /lasso
parentd3eaf8c72a02ab12df429f795b9a642459f725ab (diff)
downloadlasso-35333800036a052d3872ddbccfd0321c1813253b.tar.gz
lasso-35333800036a052d3872ddbccfd0321c1813253b.tar.xz
lasso-35333800036a052d3872ddbccfd0321c1813253b.zip
renamed samlp2:AssertionIDRequest with an underscore between id and request.
Diffstat (limited to 'lasso')
-rw-r--r--lasso/xml/saml-2.0/samlp2_assertion_idrequest.c10
-rw-r--r--lasso/xml/saml-2.0/samlp2_assertion_idrequest.h32
2 files changed, 21 insertions, 21 deletions
diff --git a/lasso/xml/saml-2.0/samlp2_assertion_idrequest.c b/lasso/xml/saml-2.0/samlp2_assertion_idrequest.c
index f33e9ed4..f0b4c467 100644
--- a/lasso/xml/saml-2.0/samlp2_assertion_idrequest.c
+++ b/lasso/xml/saml-2.0/samlp2_assertion_idrequest.c
@@ -22,7 +22,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "samlp2_assertion_idrequest.h"
+#include "samlp2_assertion_id_request.h"
/*
* Schema fragment (saml-schema-protocol-2.0.xsd):
@@ -106,7 +106,7 @@ class_init(LassoSamlp2AssertionIDRequestClass *klass)
}
GType
-lasso_samlp2_assertion_idrequest_get_type()
+lasso_samlp2_assertion_id_request_get_type()
{
static GType this_type = 0;
@@ -130,14 +130,14 @@ lasso_samlp2_assertion_idrequest_get_type()
}
/**
- * lasso_samlp2_assertion_idrequest_new:
+ * lasso_samlp2_assertion_id_request_new:
*
* Creates a new #LassoSamlp2AssertionIDRequest object.
*
* Return value: a newly created #LassoSamlp2AssertionIDRequest object
**/
LassoNode*
-lasso_samlp2_assertion_idrequest_new()
+lasso_samlp2_assertion_id_request_new()
{
- return g_object_new(LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST, NULL);
+ return g_object_new(LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST, NULL);
}
diff --git a/lasso/xml/saml-2.0/samlp2_assertion_idrequest.h b/lasso/xml/saml-2.0/samlp2_assertion_idrequest.h
index c5f11515..a85ddc82 100644
--- a/lasso/xml/saml-2.0/samlp2_assertion_idrequest.h
+++ b/lasso/xml/saml-2.0/samlp2_assertion_idrequest.h
@@ -22,8 +22,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef __LASSO_SAMLP2_ASSERTION_IDREQUEST_H__
-#define __LASSO_SAMLP2_ASSERTION_IDREQUEST_H__
+#ifndef __LASSO_SAMLP2_ASSERTION_ID_REQUEST_H__
+#define __LASSO_SAMLP2_ASSERTION_ID_REQUEST_H__
#ifdef __cplusplus
extern "C" {
@@ -31,19 +31,19 @@ extern "C" {
#include "samlp2_request_abstract.h"
-#define LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST (lasso_samlp2_assertion_idrequest_get_type())
-#define LASSO_SAMLP2_ASSERTION_IDREQUEST(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST, \
+#define LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST (lasso_samlp2_assertion_id_request_get_type())
+#define LASSO_SAMLP2_ASSERTION_ID_REQUEST(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST, \
LassoSamlp2AssertionIDRequest))
-#define LASSO_SAMLP2_ASSERTION_IDREQUEST_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST, \
+#define LASSO_SAMLP2_ASSERTION_ID_REQUEST_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST, \
LassoSamlp2AssertionIDRequestClass))
-#define LASSO_IS_SAMLP2_ASSERTION_IDREQUEST(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST))
-#define LASSO_IS_SAMLP2_ASSERTION_IDREQUEST_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST))
-#define LASSO_SAMLP2_ASSERTION_IDREQUEST_GET_CLASS(o) \
- (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_SAMLP2_ASSERTION_IDREQUEST, \
+#define LASSO_IS_SAMLP2_ASSERTION_ID_REQUEST(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST))
+#define LASSO_IS_SAMLP2_ASSERTION_ID_REQUEST_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST))
+#define LASSO_SAMLP2_ASSERTION_ID_REQUEST_GET_CLASS(o) \
+ (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_SAMLP2_ASSERTION_ID_REQUEST, \
LassoSamlp2AssertionIDRequestClass))
typedef struct _LassoSamlp2AssertionIDRequest LassoSamlp2AssertionIDRequest;
@@ -63,8 +63,8 @@ struct _LassoSamlp2AssertionIDRequestClass {
LassoSamlp2RequestAbstractClass parent;
};
-LASSO_EXPORT GType lasso_samlp2_assertion_idrequest_get_type(void);
-LASSO_EXPORT LassoNode* lasso_samlp2_assertion_idrequest_new(void);
+LASSO_EXPORT GType lasso_samlp2_assertion_id_request_get_type(void);
+LASSO_EXPORT LassoNode* lasso_samlp2_assertion_id_request_new(void);
@@ -72,4 +72,4 @@ LASSO_EXPORT LassoNode* lasso_samlp2_assertion_idrequest_new(void);
}
#endif /* __cplusplus */
-#endif /* __LASSO_SAMLP2_ASSERTION_IDREQUEST_H__ */
+#endif /* __LASSO_SAMLP2_ASSERTION_ID_REQUEST_H__ */