summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-12-31 11:33:28 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-12-31 11:33:28 +0000
commit4229c60d990fedf09796209a168f133165462995 (patch)
tree696ac17c91e52a78be1128f837ef24f1e5cbafea
parent305791ba1e72c9916ee2358eeb4b5d188276ef19 (diff)
documented a bunch of LassoSaml* classes _new functions
-rw-r--r--lasso/xml/saml_attribute.c8
-rw-r--r--lasso/xml/samlp_request.c9
-rw-r--r--lasso/xml/samlp_response.c9
-rw-r--r--lasso/xml/samlp_status.c8
-rw-r--r--lasso/xml/samlp_status_code.c8
5 files changed, 37 insertions, 5 deletions
diff --git a/lasso/xml/saml_attribute.c b/lasso/xml/saml_attribute.c
index 33b19d7c..8203bd5c 100644
--- a/lasso/xml/saml_attribute.c
+++ b/lasso/xml/saml_attribute.c
@@ -109,9 +109,15 @@ lasso_saml_attribute_get_type()
return this_type;
}
+/**
+ * lasso_saml_attribute_new:
+ *
+ * Creates a new #LassoSamlAttribute object.
+ *
+ * Return value: a newly created #LassoSamlAttribute object
+ **/
LassoNode*
lasso_saml_attribute_new()
{
return g_object_new(LASSO_TYPE_SAML_ATTRIBUTE, NULL);
}
-
diff --git a/lasso/xml/samlp_request.c b/lasso/xml/samlp_request.c
index f84cc838..7bb5333a 100644
--- a/lasso/xml/samlp_request.c
+++ b/lasso/xml/samlp_request.c
@@ -101,9 +101,16 @@ lasso_samlp_request_get_type()
return this_type;
}
+
+/**
+ * lasso_samlp_request_new:
+ *
+ * Creates a new #LassoSamlpRequest object.
+ *
+ * Return value: a newly created #LassoSamlpRequest object
+ **/
LassoNode*
lasso_samlp_request_new()
{
return g_object_new(LASSO_TYPE_SAMLP_REQUEST, NULL);
}
-
diff --git a/lasso/xml/samlp_response.c b/lasso/xml/samlp_response.c
index d2874e7c..64a5b3bd 100644
--- a/lasso/xml/samlp_response.c
+++ b/lasso/xml/samlp_response.c
@@ -124,6 +124,14 @@ lasso_samlp_response_get_type()
return response_type;
}
+
+/**
+ * lasso_samlp_response_new:
+ *
+ * Creates a new #LassoSamlpResponse object.
+ *
+ * Return value: a newly created #LassoSamlpResponse object
+ **/
LassoSamlpResponseAbstract*
lasso_samlp_response_new()
{
@@ -148,4 +156,3 @@ lasso_samlp_response_new()
return response;
}
-
diff --git a/lasso/xml/samlp_status.c b/lasso/xml/samlp_status.c
index a9649d6f..bb6912d8 100644
--- a/lasso/xml/samlp_status.c
+++ b/lasso/xml/samlp_status.c
@@ -140,9 +140,15 @@ lasso_samlp_status_get_type()
return this_type;
}
+/**
+ * lasso_samlp_status_new:
+ *
+ * Creates a new #LassoSamlpStatus object.
+ *
+ * Return value: a newly created #LassoSamlpStatus object
+ **/
LassoSamlpStatus*
lasso_samlp_status_new()
{
return g_object_new(LASSO_TYPE_SAMLP_STATUS, NULL);
}
-
diff --git a/lasso/xml/samlp_status_code.c b/lasso/xml/samlp_status_code.c
index d4d779ec..f2d8d9fb 100644
--- a/lasso/xml/samlp_status_code.c
+++ b/lasso/xml/samlp_status_code.c
@@ -93,9 +93,15 @@ lasso_samlp_status_code_get_type()
return this_type;
}
+/**
+ * lasso_samlp_status_code_new:
+ *
+ * Creates a new #LassoSamlpStatusCode object.
+ *
+ * Return value: a newly created #LassoSamlpStatusCode object
+ **/
LassoSamlpStatusCode*
lasso_samlp_status_code_new()
{
return g_object_new(LASSO_TYPE_SAMLP_STATUS_CODE, NULL);
}
-