diff options
Diffstat (limited to 'lasso')
282 files changed, 225 insertions, 1934 deletions
diff --git a/lasso/xml/disco_authenticate_requester.c b/lasso/xml/disco_authenticate_requester.c index f55ed40e..5c938863 100644 --- a/lasso/xml/disco_authenticate_requester.c +++ b/lasso/xml/disco_authenticate_requester.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoAuthenticateRequester *node) -{ - node->descriptionIDRefs = NULL; -} - -static void class_init(LassoDiscoAuthenticateRequesterClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_authenticate_requester_get_type() NULL, sizeof(LassoDiscoAuthenticateRequester), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_authenticate_session_context.c b/lasso/xml/disco_authenticate_session_context.c index 622d2a8a..72c2dadd 100644 --- a/lasso/xml/disco_authenticate_session_context.c +++ b/lasso/xml/disco_authenticate_session_context.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoAuthenticateSessionContext *node) -{ - node->descriptionIDRefs = NULL; -} - -static void class_init(LassoDiscoAuthenticateSessionContextClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_authenticate_session_context_get_type() NULL, sizeof(LassoDiscoAuthenticateSessionContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_authorize_requester.c b/lasso/xml/disco_authorize_requester.c index ca169add..9876f9cf 100644 --- a/lasso/xml/disco_authorize_requester.c +++ b/lasso/xml/disco_authorize_requester.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoAuthorizeRequester *node) -{ - node->descriptionIDRefs = NULL; -} - -static void class_init(LassoDiscoAuthorizeRequesterClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_authorize_requester_get_type() NULL, sizeof(LassoDiscoAuthorizeRequester), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_credentials.c b/lasso/xml/disco_credentials.c index 952a7a01..b244c27e 100644 --- a/lasso/xml/disco_credentials.c +++ b/lasso/xml/disco_credentials.c @@ -58,12 +58,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoCredentials *node) -{ - node->any = NULL; -} - -static void class_init(LassoDiscoCredentialsClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -89,7 +83,7 @@ lasso_disco_credentials_get_type() NULL, sizeof(LassoDiscoCredentials), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_description.c b/lasso/xml/disco_description.c index 1624030f..c7276335 100644 --- a/lasso/xml/disco_description.c +++ b/lasso/xml/disco_description.c @@ -86,21 +86,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoDescription *node) -{ - node->SecurityMechID = NULL; - node->CredentialRef = NULL; - - node->WsdlURI= NULL; - node->ServiceNameRef = NULL; - - node->Endpoint = NULL; - node->SoapAction = NULL; - - node->id = NULL; -} - -static void class_init(LassoDiscoDescriptionClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -126,7 +111,7 @@ lasso_disco_description_get_type() NULL, sizeof(LassoDiscoDescription), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_encrypt_resource_id.c b/lasso/xml/disco_encrypt_resource_id.c index 273e8e5b..7bd178cb 100644 --- a/lasso/xml/disco_encrypt_resource_id.c +++ b/lasso/xml/disco_encrypt_resource_id.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoEncryptResourceID *node) -{ - node->descriptionIDRefs = NULL; -} - -static void class_init(LassoDiscoEncryptResourceIDClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_encrypt_resource_id_get_type() NULL, sizeof(LassoDiscoEncryptResourceID), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_encrypted_resource_id.c b/lasso/xml/disco_encrypted_resource_id.c index e0f2f271..b4747d0e 100644 --- a/lasso/xml/disco_encrypted_resource_id.c +++ b/lasso/xml/disco_encrypted_resource_id.c @@ -48,13 +48,10 @@ /*****************************************************************************/ static struct XmlSnippet schema_snippets[] = { -#if 0 - { "EncryptedData", SNIPPET_NODE, + { "EncryptedData", SNIPPET_XMLNODE, G_STRUCT_OFFSET(LassoDiscoEncryptedResourceID, EncryptedData), NULL, NULL, NULL}, - { "EncryptedKey", SNIPPET_NODE, + { "EncryptedKey", SNIPPET_LIST_XMLNODES, G_STRUCT_OFFSET(LassoDiscoEncryptedResourceID, EncryptedKey), NULL, NULL, NULL}, -#endif - { "", SNIPPET_LIST_XMLNODES, G_STRUCT_OFFSET(LassoDiscoEncryptedResourceID, any), NULL, NULL, NULL}, {NULL, 0, 0, NULL, NULL, NULL} }; @@ -63,16 +60,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoEncryptedResourceID *node) -{ - node->any = NULL; -#if 0 - node->EncryptedData = NULL; - node->EncryptedKey = NULL; -#endif -} - -static void class_init(LassoDiscoEncryptedResourceIDClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -98,7 +85,7 @@ lasso_disco_encrypted_resource_id_get_type() NULL, sizeof(LassoDiscoEncryptedResourceID), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_encrypted_resource_id.h b/lasso/xml/disco_encrypted_resource_id.h index a01d39c5..f9a0a9fc 100644 --- a/lasso/xml/disco_encrypted_resource_id.h +++ b/lasso/xml/disco_encrypted_resource_id.h @@ -51,11 +51,8 @@ typedef struct _LassoDiscoEncryptedResourceIDClass LassoDiscoEncryptedResourceID struct _LassoDiscoEncryptedResourceID { LassoNode parent; -#if 0 /* missing from lasso */ - LassoXencEncryptedData *EncryptedData; - LassoXencEncryptedKey *EncryptedKey; -#endif - GList *any; /* of xmlNode */ + xmlNode *EncryptedData; + GList *EncryptedKey; }; struct _LassoDiscoEncryptedResourceIDClass { diff --git a/lasso/xml/disco_generate_bearer_token.c b/lasso/xml/disco_generate_bearer_token.c index 5b28306c..dcae8161 100644 --- a/lasso/xml/disco_generate_bearer_token.c +++ b/lasso/xml/disco_generate_bearer_token.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoGenerateBearerToken *node) -{ - node->descriptionIDRefs = NULL; -} - -static void class_init(LassoDiscoGenerateBearerTokenClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_generate_bearer_token_get_type() NULL, sizeof(LassoDiscoGenerateBearerToken), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_insert_entry.c b/lasso/xml/disco_insert_entry.c index b237d9ea..3fe5adc8 100644 --- a/lasso/xml/disco_insert_entry.c +++ b/lasso/xml/disco_insert_entry.c @@ -59,13 +59,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoInsertEntry *node) -{ - node->ResourceOffering = NULL; - node->any = NULL; -} - -static void class_init(LassoDiscoInsertEntryClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -91,7 +84,7 @@ lasso_disco_insert_entry_get_type() NULL, sizeof(LassoDiscoInsertEntry), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_modify.c b/lasso/xml/disco_modify.c index 8988ad80..99937f46 100644 --- a/lasso/xml/disco_modify.c +++ b/lasso/xml/disco_modify.c @@ -73,16 +73,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoModify *node) -{ - node->ResourceID = NULL; - node->EncryptedResourceID = NULL; - node->InsertEntry = NULL; - node->RemoveEntry = NULL; - node->id = NULL; -} - -static void class_init(LassoDiscoModifyClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -108,7 +98,7 @@ lasso_disco_modify_get_type() NULL, sizeof(LassoDiscoModify), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_modify_response.c b/lasso/xml/disco_modify_response.c index b6be1531..5c111f48 100644 --- a/lasso/xml/disco_modify_response.c +++ b/lasso/xml/disco_modify_response.c @@ -104,14 +104,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) /*****************************************************************************/ static void -instance_init(LassoDiscoModifyResponse *node) -{ - node->Status = NULL; - node->id = NULL; - node->newEntryIDs = NULL; -} - -static void class_init(LassoDiscoModifyResponseClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -138,7 +130,7 @@ lasso_disco_modify_response_get_type() NULL, sizeof(LassoDiscoModifyResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_options.c b/lasso/xml/disco_options.c index f90ae528..bfae9526 100644 --- a/lasso/xml/disco_options.c +++ b/lasso/xml/disco_options.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoOptions *node) -{ - node->Option = NULL; -} - -static void class_init(LassoDiscoOptionsClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_options_get_type() NULL, sizeof(LassoDiscoOptions), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_query.c b/lasso/xml/disco_query.c index 213226a7..1900e000 100644 --- a/lasso/xml/disco_query.c +++ b/lasso/xml/disco_query.c @@ -79,15 +79,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoQuery *node) -{ - node->ResourceID = NULL; - node->EncryptedResourceID = NULL; - node->RequestedServiceType = NULL; - node->id = NULL; -} - -static void class_init(LassoDiscoQueryClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -113,7 +104,7 @@ lasso_disco_query_get_type() NULL, sizeof(LassoDiscoQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_query_response.c b/lasso/xml/disco_query_response.c index bc96293c..4110e0bc 100644 --- a/lasso/xml/disco_query_response.c +++ b/lasso/xml/disco_query_response.c @@ -100,16 +100,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) /*****************************************************************************/ static void -instance_init(LassoDiscoQueryResponse *node) -{ - node->Status = NULL; - node->ResourceOffering = NULL; - node->Credentials = NULL; - - node->id = NULL; -} - -static void class_init(LassoDiscoQueryResponseClass *class) { LassoNodeClass *nclass = LASSO_NODE_CLASS(class); @@ -137,7 +127,7 @@ lasso_disco_query_response_get_type() NULL, sizeof(LassoDiscoQueryResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_remove_entry.c b/lasso/xml/disco_remove_entry.c index 204d764b..0c34f039 100644 --- a/lasso/xml/disco_remove_entry.c +++ b/lasso/xml/disco_remove_entry.c @@ -58,11 +58,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDiscoRemoveEntry *node) -{ - node->entryID = NULL; -} static void class_init(LassoDiscoRemoveEntryClass *klass) @@ -90,7 +85,7 @@ lasso_disco_remove_entry_get_type() NULL, sizeof(LassoDiscoRemoveEntry), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_requested_service_type.c b/lasso/xml/disco_requested_service_type.c index a3d49756..c0a077bf 100644 --- a/lasso/xml/disco_requested_service_type.c +++ b/lasso/xml/disco_requested_service_type.c @@ -63,13 +63,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoRequestedServiceType *node) -{ - node->ServiceType = NULL; - node->Options = NULL; -} - -static void class_init(LassoDiscoRequestedServiceTypeClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -95,7 +88,7 @@ lasso_disco_requested_service_type_get_type() NULL, sizeof(LassoDiscoRequestedServiceType), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_resource_id.c b/lasso/xml/disco_resource_id.c index b111e207..48534acf 100644 --- a/lasso/xml/disco_resource_id.c +++ b/lasso/xml/disco_resource_id.c @@ -59,13 +59,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoResourceID *node) -{ - node->id = NULL; - node->content = NULL; -} - -static void class_init(LassoDiscoResourceIDClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -91,7 +84,7 @@ lasso_disco_resource_id_get_type() NULL, sizeof(LassoDiscoResourceID), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_resource_offering.c b/lasso/xml/disco_resource_offering.c index 4f70441d..3d0402da 100644 --- a/lasso/xml/disco_resource_offering.c +++ b/lasso/xml/disco_resource_offering.c @@ -78,17 +78,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoResourceOffering *node) -{ - node->ResourceID = NULL; - node->EncryptedResourceID = NULL; - node->ServiceInstance = NULL; - node->Options = NULL; - node->Abstract = NULL; - node->entryID = NULL; -} - -static void class_init(LassoDiscoResourceOfferingClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -114,7 +103,7 @@ lasso_disco_resource_offering_get_type() NULL, sizeof(LassoDiscoResourceOffering), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_send_single_logout.c b/lasso/xml/disco_send_single_logout.c index 7c18b65a..1aa6e65b 100644 --- a/lasso/xml/disco_send_single_logout.c +++ b/lasso/xml/disco_send_single_logout.c @@ -56,12 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoSendSingleLogout *node) -{ - node->descriptionIDRefs = NULL; -} - -static void class_init(LassoDiscoSendSingleLogoutClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -87,7 +81,7 @@ lasso_disco_send_single_logout_get_type() NULL, sizeof(LassoDiscoSendSingleLogout), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/disco_service_instance.c b/lasso/xml/disco_service_instance.c index eb9b0d7c..8351cd49 100644 --- a/lasso/xml/disco_service_instance.c +++ b/lasso/xml/disco_service_instance.c @@ -64,14 +64,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDiscoServiceInstance *node) -{ - node->ServiceType = NULL; - node->ProviderID = NULL; - node->Description = NULL; -} - -static void class_init(LassoDiscoServiceInstanceClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -97,7 +89,7 @@ lasso_disco_service_instance_get_type() NULL, sizeof(LassoDiscoServiceInstance), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/ds_key_info.c b/lasso/xml/ds_key_info.c index 70a20892..27b7d936 100644 --- a/lasso/xml/ds_key_info.c +++ b/lasso/xml/ds_key_info.c @@ -43,12 +43,6 @@ static struct XmlSnippet schema_snippets[] = { /*****************************************************************************/ static void -instance_init(LassoDsKeyInfo *node) -{ - node->KeyValue = NULL; -} - -static void class_init(LassoDsKeyInfoClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -74,7 +68,7 @@ lasso_ds_key_info_get_type() NULL, sizeof(LassoDsKeyInfo), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/ds_key_value.c b/lasso/xml/ds_key_value.c index ffa2dabd..e3b7e97e 100644 --- a/lasso/xml/ds_key_value.c +++ b/lasso/xml/ds_key_value.c @@ -42,11 +42,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDsKeyValue *node) -{ - node->RSAKeyValue = NULL; -} static void class_init(LassoDsKeyValueClass *klass) @@ -74,7 +69,7 @@ lasso_ds_key_value_get_type() NULL, sizeof(LassoDsKeyValue), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/ds_rsa_key_value.c b/lasso/xml/ds_rsa_key_value.c index f76827f4..20f18a00 100644 --- a/lasso/xml/ds_rsa_key_value.c +++ b/lasso/xml/ds_rsa_key_value.c @@ -43,12 +43,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDsRsaKeyValue *node) -{ - node->Modulus = NULL; - node->Exponent = NULL; -} static void class_init(LassoDsRsaKeyValueClass *klass) @@ -76,7 +70,7 @@ lasso_ds_rsa_key_value_get_type() NULL, sizeof(LassoDsRsaKeyValue), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_data.c b/lasso/xml/dst_data.c index 65877840..0fe42c09 100644 --- a/lasso/xml/dst_data.c +++ b/lasso/xml/dst_data.c @@ -71,13 +71,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstData *node) -{ - node->any = NULL; - node->id = NULL; - node->itemIDRef = NULL; -} static void class_init(LassoDstDataClass *klass) @@ -105,7 +98,7 @@ lasso_dst_data_get_type() NULL, sizeof(LassoDstData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_modification.c b/lasso/xml/dst_modification.c index 243186d4..a047ed73 100644 --- a/lasso/xml/dst_modification.c +++ b/lasso/xml/dst_modification.c @@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstModification *node) -{ - node->Select = NULL; - node->NewData = NULL; - node->id = NULL; - node->notChangedSince = NULL; - node->overrideAllowed = FALSE; -} static void class_init(LassoDstModificationClass *klass) @@ -111,7 +102,7 @@ lasso_dst_modification_get_type() NULL, sizeof(LassoDstModification), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_modify.c b/lasso/xml/dst_modify.c index dcdb8708..84ac5128 100644 --- a/lasso/xml/dst_modify.c +++ b/lasso/xml/dst_modify.c @@ -133,12 +133,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstModify *node) -{ - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoDstModifyClass *klass) @@ -168,7 +162,7 @@ lasso_dst_modify_get_type() NULL, sizeof(LassoDstModify), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_modify_response.c b/lasso/xml/dst_modify_response.c index 75cb2b95..3b2b5822 100644 --- a/lasso/xml/dst_modify_response.c +++ b/lasso/xml/dst_modify_response.c @@ -111,12 +111,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstModifyResponse *node) -{ - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoDstModifyResponseClass *klass) @@ -146,7 +140,7 @@ lasso_dst_modify_response_get_type() NULL, sizeof(LassoDstModifyResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_new_data.c b/lasso/xml/dst_new_data.c index 43a0e473..92ee96a1 100644 --- a/lasso/xml/dst_new_data.c +++ b/lasso/xml/dst_new_data.c @@ -58,11 +58,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstNewData *node) -{ - node->any = NULL; -} static void class_init(LassoDstNewDataClass *klass) @@ -90,7 +85,7 @@ lasso_dst_new_data_get_type() NULL, sizeof(LassoDstNewData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_query.c b/lasso/xml/dst_query.c index 6b76baef..22dbb66f 100644 --- a/lasso/xml/dst_query.c +++ b/lasso/xml/dst_query.c @@ -124,17 +124,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstQuery *node) -{ - node->ResourceID = NULL; - node->EncryptedResourceID = NULL; - node->QueryItem = NULL; - node->id = NULL; - node->itemID = NULL; - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoDstQueryClass *klass) @@ -164,7 +153,7 @@ lasso_dst_query_get_type() NULL, sizeof(LassoDstQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_query_item.c b/lasso/xml/dst_query_item.c index 16c01445..66e2014d 100644 --- a/lasso/xml/dst_query_item.c +++ b/lasso/xml/dst_query_item.c @@ -79,16 +79,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstQueryItem *node) -{ - node->Select = NULL; - - node->id = NULL; - node->includeCommonAttributes = FALSE; - node->itemID = NULL; - node->changedSince = NULL; -} static void class_init(LassoDstQueryItemClass *klass) @@ -116,7 +106,7 @@ lasso_dst_query_item_get_type() NULL, sizeof(LassoDstQueryItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/dst_query_response.c b/lasso/xml/dst_query_response.c index 3a4e47f9..1282e971 100644 --- a/lasso/xml/dst_query_response.c +++ b/lasso/xml/dst_query_response.c @@ -126,20 +126,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoDstQueryResponse *node) -{ - node->Status = NULL; - node->Data = NULL; - node->Extension = NULL; - - node->id = NULL; - node->itemIDRef = NULL; - node->timeStamp = NULL; - - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoDstQueryResponseClass *klass) @@ -169,7 +155,7 @@ lasso_dst_query_response_get_type() NULL, sizeof(LassoDstQueryResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_abstract.c b/lasso/xml/id-wsf-2.0/disco_abstract.c index 2869c5b2..12c87c88 100644 --- a/lasso/xml/id-wsf-2.0/disco_abstract.c +++ b/lasso/xml/id-wsf-2.0/disco_abstract.c @@ -55,11 +55,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoAbstract *node) -{ - node->content = NULL; -} static void class_init(LassoIdWsf2DiscoAbstractClass *klass) @@ -88,7 +83,7 @@ lasso_idwsf2_disco_abstract_get_type() NULL, sizeof(LassoIdWsf2DiscoAbstract), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_endpoint_context.c b/lasso/xml/id-wsf-2.0/disco_endpoint_context.c index ac1928c0..65771ec0 100644 --- a/lasso/xml/id-wsf-2.0/disco_endpoint_context.c +++ b/lasso/xml/id-wsf-2.0/disco_endpoint_context.c @@ -70,14 +70,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoEndpointContext *node) -{ - node->Address = NULL; - node->Framework = NULL; - node->SecurityMechID = NULL; - node->Action = NULL; -} static void class_init(LassoIdWsf2DiscoEndpointContextClass *klass) @@ -106,7 +98,7 @@ lasso_idwsf2_disco_endpoint_context_get_type() NULL, sizeof(LassoIdWsf2DiscoEndpointContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_keys.c b/lasso/xml/id-wsf-2.0/disco_keys.c index 0eeead77..4d4365d6 100644 --- a/lasso/xml/id-wsf-2.0/disco_keys.c +++ b/lasso/xml/id-wsf-2.0/disco_keys.c @@ -61,11 +61,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoKeys *node) -{ - node->KeyDescriptor = NULL; -} static void class_init(LassoIdWsf2DiscoKeysClass *klass) @@ -94,7 +89,7 @@ lasso_idwsf2_disco_keys_get_type() NULL, sizeof(LassoIdWsf2DiscoKeys), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_options.c b/lasso/xml/id-wsf-2.0/disco_options.c index fb4e2b5f..2ab40815 100644 --- a/lasso/xml/id-wsf-2.0/disco_options.c +++ b/lasso/xml/id-wsf-2.0/disco_options.c @@ -59,11 +59,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoOptions *node) -{ - node->Option = NULL; -} static void class_init(LassoIdWsf2DiscoOptionsClass *klass) @@ -92,7 +87,7 @@ lasso_idwsf2_disco_options_get_type() NULL, sizeof(LassoIdWsf2DiscoOptions), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_provider_id.c b/lasso/xml/id-wsf-2.0/disco_provider_id.c index ce243901..bda2cf6d 100644 --- a/lasso/xml/id-wsf-2.0/disco_provider_id.c +++ b/lasso/xml/id-wsf-2.0/disco_provider_id.c @@ -55,11 +55,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoProviderID *node) -{ - node->content = NULL; -} static void class_init(LassoIdWsf2DiscoProviderIDClass *klass) @@ -88,7 +83,7 @@ lasso_idwsf2_disco_provider_id_get_type() NULL, sizeof(LassoIdWsf2DiscoProviderID), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_query.c b/lasso/xml/id-wsf-2.0/disco_query.c index 62c5599c..af2e0971 100644 --- a/lasso/xml/id-wsf-2.0/disco_query.c +++ b/lasso/xml/id-wsf-2.0/disco_query.c @@ -70,7 +70,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoQuery *node) { - node->RequestedService = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_query_response.c b/lasso/xml/id-wsf-2.0/disco_query_response.c index ab1316e4..4fd0238b 100644 --- a/lasso/xml/id-wsf-2.0/disco_query_response.c +++ b/lasso/xml/id-wsf-2.0/disco_query_response.c @@ -73,8 +73,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoQueryResponse *node) { - node->Status = NULL; - node->EndpointReference = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_requested_service.c b/lasso/xml/id-wsf-2.0/disco_requested_service.c index 32eb3b80..cc17b0d5 100644 --- a/lasso/xml/id-wsf-2.0/disco_requested_service.c +++ b/lasso/xml/id-wsf-2.0/disco_requested_service.c @@ -96,19 +96,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoRequestedService *node) -{ - node->ServiceType = NULL; - node->ProviderID = NULL; - node->Options = NULL; - node->SecurityMechID = NULL; - node->Framework = NULL; - node->Action = NULL; - node->any = NULL; - node->reqID = NULL; - node->resultsType = NULL; -} static void class_init(LassoIdWsf2DiscoRequestedServiceClass *klass) @@ -137,7 +124,7 @@ lasso_idwsf2_disco_requested_service_get_type() NULL, sizeof(LassoIdWsf2DiscoRequestedService), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_security_context.c b/lasso/xml/id-wsf-2.0/disco_security_context.c index efc7d50a..c31e8940 100644 --- a/lasso/xml/id-wsf-2.0/disco_security_context.c +++ b/lasso/xml/id-wsf-2.0/disco_security_context.c @@ -69,12 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoSecurityContext *node) -{ - node->SecurityMechID = NULL; - node->Token = NULL; -} static void class_init(LassoIdWsf2DiscoSecurityContextClass *klass) @@ -103,7 +97,7 @@ lasso_idwsf2_disco_security_context_get_type() NULL, sizeof(LassoIdWsf2DiscoSecurityContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_service_context.c b/lasso/xml/id-wsf-2.0/disco_service_context.c index 90a2c502..9f5aca83 100644 --- a/lasso/xml/id-wsf-2.0/disco_service_context.c +++ b/lasso/xml/id-wsf-2.0/disco_service_context.c @@ -68,13 +68,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoServiceContext *node) -{ - node->ServiceType = NULL; - node->Options = NULL; - node->EndpointContext = NULL; -} static void class_init(LassoIdWsf2DiscoServiceContextClass *klass) @@ -103,7 +96,7 @@ lasso_idwsf2_disco_service_context_get_type() NULL, sizeof(LassoIdWsf2DiscoServiceContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_service_type.c b/lasso/xml/id-wsf-2.0/disco_service_type.c index bb55fa9c..4d8681f3 100644 --- a/lasso/xml/id-wsf-2.0/disco_service_type.c +++ b/lasso/xml/id-wsf-2.0/disco_service_type.c @@ -55,11 +55,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoServiceType *node) -{ - node->content = NULL; -} static void class_init(LassoIdWsf2DiscoServiceTypeClass *klass) @@ -88,7 +83,7 @@ lasso_idwsf2_disco_service_type_get_type() NULL, sizeof(LassoIdWsf2DiscoServiceType), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_association_add.c b/lasso/xml/id-wsf-2.0/disco_svc_md_association_add.c index bb4e5696..dc852429 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_association_add.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_association_add.c @@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDAssociationAdd *node) { - node->SvcMDID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_association_add_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_association_add_response.c index f7280bc6..61afed9e 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_association_add_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_association_add_response.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDAssociationAddResponse *node) { - node->Status = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete.c b/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete.c index 61b210d9..b6508523 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete.c @@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDAssociationDelete *node) { - node->SvcMDID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete_response.c index 1d16e360..38920e8a 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_association_delete_response.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDAssociationDeleteResponse *node) { - node->Status = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_association_query.c b/lasso/xml/id-wsf-2.0/disco_svc_md_association_query.c index 44bc0e58..9887f37d 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_association_query.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_association_query.c @@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDAssociationQuery *node) { - node->SvcMDID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_association_query_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_association_query_response.c index 6d1e29c3..384f5ba6 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_association_query_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_association_query_response.c @@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDAssociationQueryResponse *node) { - node->Status = NULL; - node->SvcMDID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_delete.c b/lasso/xml/id-wsf-2.0/disco_svc_md_delete.c index e4ef3a65..9c0a6f26 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_delete.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_delete.c @@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDDelete *node) { - node->SvcMDID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_delete_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_delete_response.c index ca64cdd1..a207493a 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_delete_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_delete_response.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDDeleteResponse *node) { - node->Status = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_query.c b/lasso/xml/id-wsf-2.0/disco_svc_md_query.c index fc478367..1b90fe34 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_query.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_query.c @@ -67,7 +67,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDQuery *node) { - node->SvcMDID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_query_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_query_response.c index 698e3c29..0ac7bf96 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_query_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_query_response.c @@ -70,8 +70,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDQueryResponse *node) { - node->Status = NULL; - node->SvcMD = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_register.c b/lasso/xml/id-wsf-2.0/disco_svc_md_register.c index fc8e8b3f..dc7430ec 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_register.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_register.c @@ -67,7 +67,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDRegister *node) { - node->SvcMD = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_register_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_register_response.c index 8f05e56e..034d5dea 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_register_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_register_response.c @@ -75,9 +75,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDRegisterResponse *node) { - node->Status = NULL; - node->SvcMDID = NULL; - node->Keys = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_replace.c b/lasso/xml/id-wsf-2.0/disco_svc_md_replace.c index d1a4cd8b..19920c01 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_replace.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_replace.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDReplace *node) { - node->SvcMD = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_md_replace_response.c b/lasso/xml/id-wsf-2.0/disco_svc_md_replace_response.c index b27f7e12..af007ae6 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_md_replace_response.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_md_replace_response.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DiscoSvcMDReplaceResponse *node) { - node->Status = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/disco_svc_metadata.c b/lasso/xml/id-wsf-2.0/disco_svc_metadata.c index 3e51934d..f999a138 100644 --- a/lasso/xml/id-wsf-2.0/disco_svc_metadata.c +++ b/lasso/xml/id-wsf-2.0/disco_svc_metadata.c @@ -71,14 +71,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DiscoSvcMetadata *node) -{ - node->Abstract = NULL; - node->ProviderID = NULL; - node->ServiceContext = NULL; - node->svcMDID = NULL; -} static void class_init(LassoIdWsf2DiscoSvcMetadataClass *klass) @@ -107,7 +99,7 @@ lasso_idwsf2_disco_svc_metadata_get_type() NULL, sizeof(LassoIdWsf2DiscoSvcMetadata), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dst_data_response_base.c b/lasso/xml/id-wsf-2.0/dst_data_response_base.c index a787a53a..ddb58df6 100644 --- a/lasso/xml/id-wsf-2.0/dst_data_response_base.c +++ b/lasso/xml/id-wsf-2.0/dst_data_response_base.c @@ -61,11 +61,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstDataResponseBase *node) -{ - node->timeStamp = NULL; -} static void class_init(LassoIdWsf2DstDataResponseBaseClass *klass) @@ -94,7 +89,7 @@ lasso_idwsf2_dst_data_response_base_get_type() NULL, sizeof(LassoIdWsf2DstDataResponseBase), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dst_delete_item_base.c b/lasso/xml/id-wsf-2.0/dst_delete_item_base.c index c0637258..cef97647 100644 --- a/lasso/xml/id-wsf-2.0/dst_delete_item_base.c +++ b/lasso/xml/id-wsf-2.0/dst_delete_item_base.c @@ -68,15 +68,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstDeleteItemBase *node) -{ - node->notChangedSince = NULL; - node->id = NULL; - node->itemID = NULL; - node->objectType = NULL; - node->predefined = NULL; -} static void class_init(LassoIdWsf2DstDeleteItemBaseClass *klass) @@ -105,7 +96,7 @@ lasso_idwsf2_dst_delete_item_base_get_type() NULL, sizeof(LassoIdWsf2DstDeleteItemBase), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dst_request.c b/lasso/xml/id-wsf-2.0/dst_request.c index d945679c..473bfd53 100644 --- a/lasso/xml/id-wsf-2.0/dst_request.c +++ b/lasso/xml/id-wsf-2.0/dst_request.c @@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DstRequest *node) { - node->Extension = NULL; - node->itemID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/dst_result_query_base.c b/lasso/xml/id-wsf-2.0/dst_result_query_base.c index 00ab1580..f640379a 100644 --- a/lasso/xml/id-wsf-2.0/dst_result_query_base.c +++ b/lasso/xml/id-wsf-2.0/dst_result_query_base.c @@ -80,18 +80,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstResultQueryBase *node) -{ - node->ChangeFormat = NULL; - node->itemIDRef = NULL; - node->contingency = FALSE; - node->includeCommonAttributes = FALSE; - node->changedSince = NULL; - node->itemID = NULL; - node->objectType = NULL; - node->predefined = NULL; -} static void class_init(LassoIdWsf2DstResultQueryBaseClass *klass) @@ -120,7 +108,7 @@ lasso_idwsf2_dst_result_query_base_get_type() NULL, sizeof(LassoIdWsf2DstResultQueryBase), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dst_test_item_base.c b/lasso/xml/id-wsf-2.0/dst_test_item_base.c index 6be40cac..3816c974 100644 --- a/lasso/xml/id-wsf-2.0/dst_test_item_base.c +++ b/lasso/xml/id-wsf-2.0/dst_test_item_base.c @@ -65,14 +65,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstTestItemBase *node) -{ - node->id = NULL; - node->itemID = NULL; - node->objectType = NULL; - node->predefined = NULL; -} static void class_init(LassoIdWsf2DstTestItemBaseClass *klass) @@ -101,7 +93,7 @@ lasso_idwsf2_dst_test_item_base_get_type() NULL, sizeof(LassoIdWsf2DstTestItemBase), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_app_data.c b/lasso/xml/id-wsf-2.0/dstref_app_data.c index 89ed2e6e..310e4b8b 100644 --- a/lasso/xml/id-wsf-2.0/dstref_app_data.c +++ b/lasso/xml/id-wsf-2.0/dstref_app_data.c @@ -59,11 +59,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefAppData *node) -{ - node->any = NULL; -} static void class_init(LassoIdWsf2DstRefAppDataClass *klass) @@ -92,7 +87,7 @@ lasso_idwsf2_dstref_app_data_get_type() NULL, sizeof(LassoIdWsf2DstRefAppData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_create.c b/lasso/xml/id-wsf-2.0/dstref_create.c index 9380ad16..39b8899a 100644 --- a/lasso/xml/id-wsf-2.0/dstref_create.c +++ b/lasso/xml/id-wsf-2.0/dstref_create.c @@ -68,12 +68,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefCreate *node) -{ - node->CreateItem = NULL; - node->ResultQuery = NULL; -} static void class_init(LassoIdWsf2DstRefCreateClass *klass) @@ -102,7 +96,7 @@ lasso_idwsf2_dstref_create_get_type() NULL, sizeof(LassoIdWsf2DstRefCreate), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_create_item.c b/lasso/xml/id-wsf-2.0/dstref_create_item.c index 9fd9941a..50fffbaa 100644 --- a/lasso/xml/id-wsf-2.0/dstref_create_item.c +++ b/lasso/xml/id-wsf-2.0/dstref_create_item.c @@ -67,14 +67,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefCreateItem *node) -{ - node->NewData = NULL; - node->objectType = NULL; - node->id = NULL; - node->itemID = NULL; -} static void class_init(LassoIdWsf2DstRefCreateItemClass *klass) @@ -103,7 +95,7 @@ lasso_idwsf2_dstref_create_item_get_type() NULL, sizeof(LassoIdWsf2DstRefCreateItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_data.c b/lasso/xml/id-wsf-2.0/dstref_data.c index 0e3800ac..afa13556 100644 --- a/lasso/xml/id-wsf-2.0/dstref_data.c +++ b/lasso/xml/id-wsf-2.0/dstref_data.c @@ -68,9 +68,7 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2DstRefData *node) { - node->remaining = 0; node->nextOffset = -1; - node->setID = NULL; } static void diff --git a/lasso/xml/id-wsf-2.0/dstref_data_response.c b/lasso/xml/id-wsf-2.0/dstref_data_response.c index 3328befd..2aefadec 100644 --- a/lasso/xml/id-wsf-2.0/dstref_data_response.c +++ b/lasso/xml/id-wsf-2.0/dstref_data_response.c @@ -64,11 +64,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefDataResponse *node) -{ - node->ItemData = NULL; -} static void class_init(LassoIdWsf2DstRefDataResponseClass *klass) @@ -97,7 +92,7 @@ lasso_idwsf2_dstref_data_response_get_type() NULL, sizeof(LassoIdWsf2DstRefDataResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_delete.c b/lasso/xml/id-wsf-2.0/dstref_delete.c index db823b72..d93bb31d 100644 --- a/lasso/xml/id-wsf-2.0/dstref_delete.c +++ b/lasso/xml/id-wsf-2.0/dstref_delete.c @@ -64,11 +64,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefDelete *node) -{ - node->DeleteItem = NULL; -} static void class_init(LassoIdWsf2DstRefDeleteClass *klass) @@ -97,7 +92,7 @@ lasso_idwsf2_dstref_delete_get_type() NULL, sizeof(LassoIdWsf2DstRefDelete), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_delete_item.c b/lasso/xml/id-wsf-2.0/dstref_delete_item.c index 5e1971b3..2a222e52 100644 --- a/lasso/xml/id-wsf-2.0/dstref_delete_item.c +++ b/lasso/xml/id-wsf-2.0/dstref_delete_item.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefDeleteItem *node) -{ - node->Select = NULL; -} static void class_init(LassoIdWsf2DstRefDeleteItemClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_dstref_delete_item_get_type() NULL, sizeof(LassoIdWsf2DstRefDeleteItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_item_data.c b/lasso/xml/id-wsf-2.0/dstref_item_data.c index c269b70b..f2deb087 100644 --- a/lasso/xml/id-wsf-2.0/dstref_item_data.c +++ b/lasso/xml/id-wsf-2.0/dstref_item_data.c @@ -65,13 +65,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefItemData *node) -{ - node->itemIDRef = NULL; - node->notSorted = NULL; - node->changeFormat = NULL; -} static void class_init(LassoIdWsf2DstRefItemDataClass *klass) @@ -100,7 +93,7 @@ lasso_idwsf2_dstref_item_data_get_type() NULL, sizeof(LassoIdWsf2DstRefItemData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_modify.c b/lasso/xml/id-wsf-2.0/dstref_modify.c index 0da9a0d9..49fc4c09 100644 --- a/lasso/xml/id-wsf-2.0/dstref_modify.c +++ b/lasso/xml/id-wsf-2.0/dstref_modify.c @@ -101,14 +101,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefModify *node) -{ - node->ModifyItem = NULL; - node->ResultQuery = NULL; - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoIdWsf2DstRefModifyClass *klass) @@ -139,7 +131,7 @@ lasso_idwsf2_dstref_modify_get_type() NULL, sizeof(LassoIdWsf2DstRefModify), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_modify_item.c b/lasso/xml/id-wsf-2.0/dstref_modify_item.c index bc2a56c5..7e445311 100644 --- a/lasso/xml/id-wsf-2.0/dstref_modify_item.c +++ b/lasso/xml/id-wsf-2.0/dstref_modify_item.c @@ -72,16 +72,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefModifyItem *node) -{ - node->Select = NULL; - node->NewData = NULL; - node->notChangedSince = NULL; - node->overrideAllowed = FALSE; - node->id = NULL; - node->itemID = NULL; -} static void class_init(LassoIdWsf2DstRefModifyItemClass *klass) @@ -110,7 +100,7 @@ lasso_idwsf2_dstref_modify_item_get_type() NULL, sizeof(LassoIdWsf2DstRefModifyItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_modify_response.c b/lasso/xml/id-wsf-2.0/dstref_modify_response.c index fb064bed..ad7b014c 100644 --- a/lasso/xml/id-wsf-2.0/dstref_modify_response.c +++ b/lasso/xml/id-wsf-2.0/dstref_modify_response.c @@ -92,12 +92,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefModifyResponse *node) -{ - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoIdWsf2DstRefModifyResponseClass *klass) @@ -128,7 +122,7 @@ lasso_idwsf2_dstref_modify_response_get_type() NULL, sizeof(LassoIdWsf2DstRefModifyResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_query.c b/lasso/xml/id-wsf-2.0/dstref_query.c index 56ff39e4..ead6bbb0 100644 --- a/lasso/xml/id-wsf-2.0/dstref_query.c +++ b/lasso/xml/id-wsf-2.0/dstref_query.c @@ -103,14 +103,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefQuery *node) -{ - node->TestItem = NULL; - node->QueryItem = NULL; - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoIdWsf2DstRefQueryClass *klass) @@ -141,7 +133,7 @@ lasso_idwsf2_dstref_query_get_type() NULL, sizeof(LassoIdWsf2DstRefQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_query_item.c b/lasso/xml/id-wsf-2.0/dstref_query_item.c index 6b2d15a2..f067d3ff 100644 --- a/lasso/xml/id-wsf-2.0/dstref_query_item.c +++ b/lasso/xml/id-wsf-2.0/dstref_query_item.c @@ -72,8 +72,6 @@ instance_init(LassoIdWsf2DstRefQueryItem *node) { node->count = -1; node->offset = -1; - node->setID = NULL; - node->setReq = NULL; } static void diff --git a/lasso/xml/id-wsf-2.0/dstref_query_response.c b/lasso/xml/id-wsf-2.0/dstref_query_response.c index 9c8e3748..fccb4c5a 100644 --- a/lasso/xml/id-wsf-2.0/dstref_query_response.c +++ b/lasso/xml/id-wsf-2.0/dstref_query_response.c @@ -102,14 +102,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefQueryResponse *node) -{ - node->TestResult = NULL; - node->Data = NULL; - node->prefixServiceType = NULL; - node->hrefServiceType = NULL; -} static void class_init(LassoIdWsf2DstRefQueryResponseClass *klass) @@ -140,7 +132,7 @@ lasso_idwsf2_dstref_query_response_get_type() NULL, sizeof(LassoIdWsf2DstRefQueryResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_result_query.c b/lasso/xml/id-wsf-2.0/dstref_result_query.c index 205d70cf..018272f3 100644 --- a/lasso/xml/id-wsf-2.0/dstref_result_query.c +++ b/lasso/xml/id-wsf-2.0/dstref_result_query.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefResultQuery *node) -{ - node->Select = NULL; - node->Sort = NULL; -} static void class_init(LassoIdWsf2DstRefResultQueryClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_dstref_result_query_get_type() NULL, sizeof(LassoIdWsf2DstRefResultQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/dstref_test_item.c b/lasso/xml/id-wsf-2.0/dstref_test_item.c index 0579e2b6..8a62d413 100644 --- a/lasso/xml/id-wsf-2.0/dstref_test_item.c +++ b/lasso/xml/id-wsf-2.0/dstref_test_item.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2DstRefTestItem *node) -{ - node->TestOp = NULL; -} static void class_init(LassoIdWsf2DstRefTestItemClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_dstref_test_item_get_type() NULL, sizeof(LassoIdWsf2DstRefTestItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ims_identity_mapping_request.c b/lasso/xml/id-wsf-2.0/ims_identity_mapping_request.c index c7130925..e29ae42f 100644 --- a/lasso/xml/id-wsf-2.0/ims_identity_mapping_request.c +++ b/lasso/xml/id-wsf-2.0/ims_identity_mapping_request.c @@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2ImsIdentityMappingRequest *node) { - node->MappingInput = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/ims_identity_mapping_response.c b/lasso/xml/id-wsf-2.0/ims_identity_mapping_response.c index 58801444..c51e88c4 100644 --- a/lasso/xml/id-wsf-2.0/ims_identity_mapping_response.c +++ b/lasso/xml/id-wsf-2.0/ims_identity_mapping_response.c @@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2ImsIdentityMappingResponse *node) { - node->Status = NULL; - node->MappingOutput = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/ims_mapping_input.c b/lasso/xml/id-wsf-2.0/ims_mapping_input.c index 3f2161bb..4a6856f0 100644 --- a/lasso/xml/id-wsf-2.0/ims_mapping_input.c +++ b/lasso/xml/id-wsf-2.0/ims_mapping_input.c @@ -65,13 +65,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2ImsMappingInput *node) -{ - node->TokenPolicy = NULL; - node->Token = NULL; - node->reqID = NULL; -} static void class_init(LassoIdWsf2ImsMappingInputClass *klass) @@ -100,7 +93,7 @@ lasso_idwsf2_ims_mapping_input_get_type() NULL, sizeof(LassoIdWsf2ImsMappingInput), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ims_mapping_output.c b/lasso/xml/id-wsf-2.0/ims_mapping_output.c index 4c285c1a..ac6e6d75 100644 --- a/lasso/xml/id-wsf-2.0/ims_mapping_output.c +++ b/lasso/xml/id-wsf-2.0/ims_mapping_output.c @@ -62,12 +62,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2ImsMappingOutput *node) -{ - node->Token = NULL; - node->reqRef = NULL; -} static void class_init(LassoIdWsf2ImsMappingOutputClass *klass) @@ -96,7 +90,7 @@ lasso_idwsf2_ims_mapping_output_get_type() NULL, sizeof(LassoIdWsf2ImsMappingOutput), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_help.c b/lasso/xml/id-wsf-2.0/is_help.c index acdcac9f..4f562521 100644 --- a/lasso/xml/id-wsf-2.0/is_help.c +++ b/lasso/xml/id-wsf-2.0/is_help.c @@ -63,13 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsHelp *node) -{ - node->label = NULL; - node->link = NULL; - node->moreLink = NULL; -} static void class_init(LassoIdWsf2IsHelpClass *klass) @@ -98,7 +91,7 @@ lasso_idwsf2_is_help_get_type() NULL, sizeof(LassoIdWsf2IsHelp), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_inquiry.c b/lasso/xml/id-wsf-2.0/is_inquiry.c index 55ee8e7c..ecd842e9 100644 --- a/lasso/xml/id-wsf-2.0/is_inquiry.c +++ b/lasso/xml/id-wsf-2.0/is_inquiry.c @@ -77,16 +77,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsInquiry *node) -{ - node->Help = NULL; - node->Select = NULL; - node->Confirm = NULL; - node->Text = NULL; - node->id = NULL; - node->title = NULL; -} static void class_init(LassoIdWsf2IsInquiryClass *klass) @@ -115,7 +105,7 @@ lasso_idwsf2_is_inquiry_get_type() NULL, sizeof(LassoIdWsf2IsInquiry), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_inquiry_element.c b/lasso/xml/id-wsf-2.0/is_inquiry_element.c index e796b069..ac5e3f71 100644 --- a/lasso/xml/id-wsf-2.0/is_inquiry_element.c +++ b/lasso/xml/id-wsf-2.0/is_inquiry_element.c @@ -71,15 +71,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsInquiryElement *node) -{ - node->Help = NULL; - node->Hint = NULL; - node->Label = NULL; - node->Value = NULL; - node->name = NULL; -} static void class_init(LassoIdWsf2IsInquiryElementClass *klass) @@ -108,7 +99,7 @@ lasso_idwsf2_is_inquiry_element_get_type() NULL, sizeof(LassoIdWsf2IsInquiryElement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_interaction_request.c b/lasso/xml/id-wsf-2.0/is_interaction_request.c index 42d75567..11595bcd 100644 --- a/lasso/xml/id-wsf-2.0/is_interaction_request.c +++ b/lasso/xml/id-wsf-2.0/is_interaction_request.c @@ -74,16 +74,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsInteractionRequest *node) -{ - node->Inquiry = NULL; - node->KeyInfo = NULL; - node->id = NULL; - node->language = NULL; - node->maxInteractTime = 0; - node->signed_ = NULL; -} static void class_init(LassoIdWsf2IsInteractionRequestClass *klass) @@ -112,7 +102,7 @@ lasso_idwsf2_is_interaction_request_get_type() NULL, sizeof(LassoIdWsf2IsInteractionRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_interaction_response.c b/lasso/xml/id-wsf-2.0/is_interaction_response.c index 1e4ed1ea..25e0ae1d 100644 --- a/lasso/xml/id-wsf-2.0/is_interaction_response.c +++ b/lasso/xml/id-wsf-2.0/is_interaction_response.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsInteractionResponse *node) -{ - node->Status = NULL; - node->InteractionStatement = NULL; - node->Parameter = NULL; -} static void class_init(LassoIdWsf2IsInteractionResponseClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_is_interaction_response_get_type() NULL, sizeof(LassoIdWsf2IsInteractionResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_interaction_statement.c b/lasso/xml/id-wsf-2.0/is_interaction_statement.c index cc030cf7..155bb2ae 100644 --- a/lasso/xml/id-wsf-2.0/is_interaction_statement.c +++ b/lasso/xml/id-wsf-2.0/is_interaction_statement.c @@ -79,7 +79,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2IsInteractionStatement *node) { - node->Inquiry = NULL; node->sign_type = LASSO_SIGNATURE_TYPE_NONE; } diff --git a/lasso/xml/id-wsf-2.0/is_item.c b/lasso/xml/id-wsf-2.0/is_item.c index e39d9d69..128499b8 100644 --- a/lasso/xml/id-wsf-2.0/is_item.c +++ b/lasso/xml/id-wsf-2.0/is_item.c @@ -67,13 +67,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsItem *node) -{ - node->Hint = NULL; - node->label = NULL; - node->value = NULL; -} static void class_init(LassoIdWsf2IsItemClass *klass) @@ -102,7 +95,7 @@ lasso_idwsf2_is_item_get_type() NULL, sizeof(LassoIdWsf2IsItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_parameter.c b/lasso/xml/id-wsf-2.0/is_parameter.c index c8d2c30d..144b9a89 100644 --- a/lasso/xml/id-wsf-2.0/is_parameter.c +++ b/lasso/xml/id-wsf-2.0/is_parameter.c @@ -60,12 +60,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsParameter *node) -{ - node->name = NULL; - node->value = NULL; -} static void class_init(LassoIdWsf2IsParameterClass *klass) @@ -94,7 +88,7 @@ lasso_idwsf2_is_parameter_get_type() NULL, sizeof(LassoIdWsf2IsParameter), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_select.c b/lasso/xml/id-wsf-2.0/is_select.c index 84bc548a..dd8f605c 100644 --- a/lasso/xml/id-wsf-2.0/is_select.c +++ b/lasso/xml/id-wsf-2.0/is_select.c @@ -66,11 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsSelect *node) -{ - node->Item = NULL; -} static void class_init(LassoIdWsf2IsSelectClass *klass) @@ -99,7 +94,7 @@ lasso_idwsf2_is_select_get_type() NULL, sizeof(LassoIdWsf2IsSelect), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/is_text.c b/lasso/xml/id-wsf-2.0/is_text.c index db52a3bc..01f2c40b 100644 --- a/lasso/xml/id-wsf-2.0/is_text.c +++ b/lasso/xml/id-wsf-2.0/is_text.c @@ -67,13 +67,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2IsText *node) -{ - node->minChars = 0; - node->maxChars = 0; - node->format = NULL; -} static void class_init(LassoIdWsf2IsTextClass *klass) @@ -102,7 +95,7 @@ lasso_idwsf2_is_text_get_type() NULL, sizeof(LassoIdWsf2IsText), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_collection_request.c b/lasso/xml/id-wsf-2.0/ps_add_collection_request.c index c0836c8d..935b5dea 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_collection_request.c +++ b/lasso/xml/id-wsf-2.0/ps_add_collection_request.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddCollectionRequest *node) -{ - node->Object = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2PsAddCollectionRequestClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_ps_add_collection_request_get_type() NULL, sizeof(LassoIdWsf2PsAddCollectionRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_collection_response.c b/lasso/xml/id-wsf-2.0/ps_add_collection_response.c index 122b241d..f6e4b030 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_collection_response.c +++ b/lasso/xml/id-wsf-2.0/ps_add_collection_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddCollectionResponse *node) -{ - node->Object = NULL; -} static void class_init(LassoIdWsf2PsAddCollectionResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_add_collection_response_get_type() NULL, sizeof(LassoIdWsf2PsAddCollectionResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_entity_request.c b/lasso/xml/id-wsf-2.0/ps_add_entity_request.c index 98ce7f2f..8bc65eda 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_entity_request.c +++ b/lasso/xml/id-wsf-2.0/ps_add_entity_request.c @@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddEntityRequest *node) -{ - node->Object = NULL; - node->PStoSPRedirectURL = NULL; - node->CreatePSObject = NULL; - node->Subscription = NULL; - node->TokenPolicy = NULL; -} static void class_init(LassoIdWsf2PsAddEntityRequestClass *klass) @@ -112,7 +103,7 @@ lasso_idwsf2_ps_add_entity_request_get_type() NULL, sizeof(LassoIdWsf2PsAddEntityRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_entity_response.c b/lasso/xml/id-wsf-2.0/ps_add_entity_response.c index 3f92ed1b..f0c62b65 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_entity_response.c +++ b/lasso/xml/id-wsf-2.0/ps_add_entity_response.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddEntityResponse *node) -{ - node->Object = NULL; - node->SPtoPSRedirectURL = NULL; - node->QueryString = NULL; -} static void class_init(LassoIdWsf2PsAddEntityResponseClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_ps_add_entity_response_get_type() NULL, sizeof(LassoIdWsf2PsAddEntityResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_known_entity_request.c b/lasso/xml/id-wsf-2.0/ps_add_known_entity_request.c index 82f6db77..bb22ae19 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_known_entity_request.c +++ b/lasso/xml/id-wsf-2.0/ps_add_known_entity_request.c @@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddKnownEntityRequest *node) -{ - node->Object = NULL; - node->Token = NULL; - node->CreatePSObject = NULL; - node->Subscription = NULL; - node->TokenPolicy = NULL; -} static void class_init(LassoIdWsf2PsAddKnownEntityRequestClass *klass) @@ -112,7 +103,7 @@ lasso_idwsf2_ps_add_known_entity_request_get_type() NULL, sizeof(LassoIdWsf2PsAddKnownEntityRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_known_entity_response.c b/lasso/xml/id-wsf-2.0/ps_add_known_entity_response.c index d514c206..0ef7b74e 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_known_entity_response.c +++ b/lasso/xml/id-wsf-2.0/ps_add_known_entity_response.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddKnownEntityResponse *node) -{ - node->Object = NULL; - node->SPtoPSRedirectURL = NULL; - node->QueryString = NULL; -} static void class_init(LassoIdWsf2PsAddKnownEntityResponseClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_ps_add_known_entity_response_get_type() NULL, sizeof(LassoIdWsf2PsAddKnownEntityResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_add_to_collection_request.c b/lasso/xml/id-wsf-2.0/ps_add_to_collection_request.c index bf6b0ac1..78c17604 100644 --- a/lasso/xml/id-wsf-2.0/ps_add_to_collection_request.c +++ b/lasso/xml/id-wsf-2.0/ps_add_to_collection_request.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsAddToCollectionRequest *node) -{ - node->TargetObjectID = NULL; - node->ObjectID = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2PsAddToCollectionRequestClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_ps_add_to_collection_request_get_type() NULL, sizeof(LassoIdWsf2PsAddToCollectionRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_get_object_info_request.c b/lasso/xml/id-wsf-2.0/ps_get_object_info_request.c index fd8f7b84..3539135e 100644 --- a/lasso/xml/id-wsf-2.0/ps_get_object_info_request.c +++ b/lasso/xml/id-wsf-2.0/ps_get_object_info_request.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsGetObjectInfoRequest *node) -{ - node->TargetObjectID = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2PsGetObjectInfoRequestClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_ps_get_object_info_request_get_type() NULL, sizeof(LassoIdWsf2PsGetObjectInfoRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_get_object_info_response.c b/lasso/xml/id-wsf-2.0/ps_get_object_info_response.c index 59d8ea70..ea8bd3b9 100644 --- a/lasso/xml/id-wsf-2.0/ps_get_object_info_response.c +++ b/lasso/xml/id-wsf-2.0/ps_get_object_info_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsGetObjectInfoResponse *node) -{ - node->Object = NULL; -} static void class_init(LassoIdWsf2PsGetObjectInfoResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_get_object_info_response_get_type() NULL, sizeof(LassoIdWsf2PsGetObjectInfoResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_item_data.c b/lasso/xml/id-wsf-2.0/ps_item_data.c index 4c224029..31f80fd8 100644 --- a/lasso/xml/id-wsf-2.0/ps_item_data.c +++ b/lasso/xml/id-wsf-2.0/ps_item_data.c @@ -59,11 +59,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsItemData *node) -{ - node->Object = NULL; -} static void class_init(LassoIdWsf2PsItemDataClass *klass) @@ -92,7 +87,7 @@ lasso_idwsf2_ps_item_data_get_type() NULL, sizeof(LassoIdWsf2PsItemData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_list_members_request.c b/lasso/xml/id-wsf-2.0/ps_list_members_request.c index f3a3d268..b1a6ec24 100644 --- a/lasso/xml/id-wsf-2.0/ps_list_members_request.c +++ b/lasso/xml/id-wsf-2.0/ps_list_members_request.c @@ -78,9 +78,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2PsListMembersRequest *node) { - node->TargetObjectID = NULL; - node->Subscription = NULL; - node->Structured = NULL; node->Count = -1; node->Offset = -1; } diff --git a/lasso/xml/id-wsf-2.0/ps_list_members_response.c b/lasso/xml/id-wsf-2.0/ps_list_members_response.c index d9cf4350..67f5e84b 100644 --- a/lasso/xml/id-wsf-2.0/ps_list_members_response.c +++ b/lasso/xml/id-wsf-2.0/ps_list_members_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsListMembersResponse *node) -{ - node->Object = NULL; -} static void class_init(LassoIdWsf2PsListMembersResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_list_members_response_get_type() NULL, sizeof(LassoIdWsf2PsListMembersResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_notification.c b/lasso/xml/id-wsf-2.0/ps_notification.c index 27c98e9c..2de0af96 100644 --- a/lasso/xml/id-wsf-2.0/ps_notification.c +++ b/lasso/xml/id-wsf-2.0/ps_notification.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsNotification *node) -{ - node->ItemData = NULL; -} static void class_init(LassoIdWsf2PsNotificationClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_notification_get_type() NULL, sizeof(LassoIdWsf2PsNotification), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_notify.c b/lasso/xml/id-wsf-2.0/ps_notify.c index e49eb580..259018ac 100644 --- a/lasso/xml/id-wsf-2.0/ps_notify.c +++ b/lasso/xml/id-wsf-2.0/ps_notify.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsNotify *node) -{ - node->Notification = NULL; - node->timeStamp = NULL; -} static void class_init(LassoIdWsf2PsNotifyClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_ps_notify_get_type() NULL, sizeof(LassoIdWsf2PsNotify), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_object.c b/lasso/xml/id-wsf-2.0/ps_object.c index 98ecfa24..2301db99 100644 --- a/lasso/xml/id-wsf-2.0/ps_object.c +++ b/lasso/xml/id-wsf-2.0/ps_object.c @@ -81,18 +81,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsObject *node) -{ - node->ObjectID = NULL; - node->DisplayName = NULL; - node->Tag = NULL; - node->Object = NULL; - node->ObjectRef = NULL; - node->NodeType = NULL; - node->CreatedDateTime = NULL; - node->ModifiedDateTime = NULL; -} static void class_init(LassoIdWsf2PsObjectClass *klass) @@ -121,7 +109,7 @@ lasso_idwsf2_ps_object_get_type() NULL, sizeof(LassoIdWsf2PsObject), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_query_objects_request.c b/lasso/xml/id-wsf-2.0/ps_query_objects_request.c index 06967b63..27efab22 100644 --- a/lasso/xml/id-wsf-2.0/ps_query_objects_request.c +++ b/lasso/xml/id-wsf-2.0/ps_query_objects_request.c @@ -75,8 +75,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2PsQueryObjectsRequest *node) { - node->Filter = NULL; - node->Subscription = NULL; node->Count = -1; node->Offset = -1; } diff --git a/lasso/xml/id-wsf-2.0/ps_query_objects_response.c b/lasso/xml/id-wsf-2.0/ps_query_objects_response.c index 56f50ad6..970d47d1 100644 --- a/lasso/xml/id-wsf-2.0/ps_query_objects_response.c +++ b/lasso/xml/id-wsf-2.0/ps_query_objects_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsQueryObjectsResponse *node) -{ - node->Object = NULL; -} static void class_init(LassoIdWsf2PsQueryObjectsResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_query_objects_response_get_type() NULL, sizeof(LassoIdWsf2PsQueryObjectsResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_remove_collection_request.c b/lasso/xml/id-wsf-2.0/ps_remove_collection_request.c index 01827177..8631a246 100644 --- a/lasso/xml/id-wsf-2.0/ps_remove_collection_request.c +++ b/lasso/xml/id-wsf-2.0/ps_remove_collection_request.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsRemoveCollectionRequest *node) -{ - node->TargetObjectID = NULL; -} static void class_init(LassoIdWsf2PsRemoveCollectionRequestClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_remove_collection_request_get_type() NULL, sizeof(LassoIdWsf2PsRemoveCollectionRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_remove_entity_request.c b/lasso/xml/id-wsf-2.0/ps_remove_entity_request.c index c1e6fff0..b893b293 100644 --- a/lasso/xml/id-wsf-2.0/ps_remove_entity_request.c +++ b/lasso/xml/id-wsf-2.0/ps_remove_entity_request.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsRemoveEntityRequest *node) -{ - node->TargetObjectID = NULL; -} static void class_init(LassoIdWsf2PsRemoveEntityRequestClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_remove_entity_request_get_type() NULL, sizeof(LassoIdWsf2PsRemoveEntityRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_remove_from_collection_request.c b/lasso/xml/id-wsf-2.0/ps_remove_from_collection_request.c index e4eb696a..d1468c7b 100644 --- a/lasso/xml/id-wsf-2.0/ps_remove_from_collection_request.c +++ b/lasso/xml/id-wsf-2.0/ps_remove_from_collection_request.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsRemoveFromCollectionRequest *node) -{ - node->TargetObjectID = NULL; - node->ObjectID = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2PsRemoveFromCollectionRequestClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_ps_remove_from_collection_request_get_type() NULL, sizeof(LassoIdWsf2PsRemoveFromCollectionRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_resolve_identifier_request.c b/lasso/xml/id-wsf-2.0/ps_resolve_identifier_request.c index 8f4973bf..c8ac20e7 100644 --- a/lasso/xml/id-wsf-2.0/ps_resolve_identifier_request.c +++ b/lasso/xml/id-wsf-2.0/ps_resolve_identifier_request.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsResolveIdentifierRequest *node) -{ - node->ResolveInput = NULL; -} static void class_init(LassoIdWsf2PsResolveIdentifierRequestClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_resolve_identifier_request_get_type() NULL, sizeof(LassoIdWsf2PsResolveIdentifierRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_resolve_identifier_response.c b/lasso/xml/id-wsf-2.0/ps_resolve_identifier_response.c index 2c119500..0aec5af0 100644 --- a/lasso/xml/id-wsf-2.0/ps_resolve_identifier_response.c +++ b/lasso/xml/id-wsf-2.0/ps_resolve_identifier_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsResolveIdentifierResponse *node) -{ - node->ResolveOutput = NULL; -} static void class_init(LassoIdWsf2PsResolveIdentifierResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_resolve_identifier_response_get_type() NULL, sizeof(LassoIdWsf2PsResolveIdentifierResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_resolve_input.c b/lasso/xml/id-wsf-2.0/ps_resolve_input.c index 564575f1..ca1e9e0a 100644 --- a/lasso/xml/id-wsf-2.0/ps_resolve_input.c +++ b/lasso/xml/id-wsf-2.0/ps_resolve_input.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsResolveInput *node) -{ - node->TargetObjectID = NULL; -} static void class_init(LassoIdWsf2PsResolveInputClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_resolve_input_get_type() NULL, sizeof(LassoIdWsf2PsResolveInput), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_response_abstract.c b/lasso/xml/id-wsf-2.0/ps_response_abstract.c index 1fac61af..ede95e91 100644 --- a/lasso/xml/id-wsf-2.0/ps_response_abstract.c +++ b/lasso/xml/id-wsf-2.0/ps_response_abstract.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2PsResponseAbstract *node) { - node->Status = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/ps_set_object_info_request.c b/lasso/xml/id-wsf-2.0/ps_set_object_info_request.c index 10c4b80e..d834ad43 100644 --- a/lasso/xml/id-wsf-2.0/ps_set_object_info_request.c +++ b/lasso/xml/id-wsf-2.0/ps_set_object_info_request.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsSetObjectInfoRequest *node) -{ - node->Object = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2PsSetObjectInfoRequestClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_ps_set_object_info_request_get_type() NULL, sizeof(LassoIdWsf2PsSetObjectInfoRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_test_membership_request.c b/lasso/xml/id-wsf-2.0/ps_test_membership_request.c index 391d14e0..49cd97e8 100644 --- a/lasso/xml/id-wsf-2.0/ps_test_membership_request.c +++ b/lasso/xml/id-wsf-2.0/ps_test_membership_request.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsTestMembershipRequest *node) -{ - node->TargetObjectID = NULL; - node->Token = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2PsTestMembershipRequestClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_ps_test_membership_request_get_type() NULL, sizeof(LassoIdWsf2PsTestMembershipRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/ps_test_membership_response.c b/lasso/xml/id-wsf-2.0/ps_test_membership_response.c index e8cf9bfe..a554f0c3 100644 --- a/lasso/xml/id-wsf-2.0/ps_test_membership_response.c +++ b/lasso/xml/id-wsf-2.0/ps_test_membership_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2PsTestMembershipResponse *node) -{ - node->Result = NULL; -} static void class_init(LassoIdWsf2PsTestMembershipResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_ps_test_membership_response_get_type() NULL, sizeof(LassoIdWsf2PsTestMembershipResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/sb2_consent.c b/lasso/xml/id-wsf-2.0/sb2_consent.c index eae3fcb0..d79dfd83 100644 --- a/lasso/xml/id-wsf-2.0/sb2_consent.c +++ b/lasso/xml/id-wsf-2.0/sb2_consent.c @@ -66,8 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2Sb2Consent *node) { - node->uri = NULL; - node->timestamp = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sb2_credentials_context.c b/lasso/xml/id-wsf-2.0/sb2_credentials_context.c index a531a3ba..d823a5c6 100644 --- a/lasso/xml/id-wsf-2.0/sb2_credentials_context.c +++ b/lasso/xml/id-wsf-2.0/sb2_credentials_context.c @@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2Sb2CredentialsContext *node) { - node->RequestedAuthnContext = NULL; - node->SecurityMechID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sb2_endpoint_update.c b/lasso/xml/id-wsf-2.0/sb2_endpoint_update.c index 04f320ee..2fa372e0 100644 --- a/lasso/xml/id-wsf-2.0/sb2_endpoint_update.c +++ b/lasso/xml/id-wsf-2.0/sb2_endpoint_update.c @@ -61,11 +61,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2Sb2EndpointUpdate *node) -{ - node->updateType = NULL; -} static void class_init(LassoIdWsf2Sb2EndpointUpdateClass *klass) @@ -94,7 +89,7 @@ lasso_idwsf2_sb2_endpoint_update_get_type() NULL, sizeof(LassoIdWsf2Sb2EndpointUpdate), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/sb2_redirect_request.c b/lasso/xml/id-wsf-2.0/sb2_redirect_request.c index 4d6fdcce..00f9f20b 100644 --- a/lasso/xml/id-wsf-2.0/sb2_redirect_request.c +++ b/lasso/xml/id-wsf-2.0/sb2_redirect_request.c @@ -57,11 +57,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2Sb2RedirectRequest *node) -{ - node->redirectURL = NULL; -} static void class_init(LassoIdWsf2Sb2RedirectRequestClass *klass) @@ -90,7 +85,7 @@ lasso_idwsf2_sb2_redirect_request_get_type() NULL, sizeof(LassoIdWsf2Sb2RedirectRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/sb2_sender.c b/lasso/xml/id-wsf-2.0/sb2_sender.c index bd34b4ad..f970fc63 100644 --- a/lasso/xml/id-wsf-2.0/sb2_sender.c +++ b/lasso/xml/id-wsf-2.0/sb2_sender.c @@ -66,8 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2Sb2Sender *node) { - node->providerID = NULL; - node->affiliationID = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sb2_timeout.c b/lasso/xml/id-wsf-2.0/sb2_timeout.c index 3c0d73f1..e4369ab5 100644 --- a/lasso/xml/id-wsf-2.0/sb2_timeout.c +++ b/lasso/xml/id-wsf-2.0/sb2_timeout.c @@ -63,7 +63,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2Sb2Timeout *node) { - node->maxProcessingTime = 0; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sb2_usage_directive.c b/lasso/xml/id-wsf-2.0/sb2_usage_directive.c index e07e7f89..b0f06989 100644 --- a/lasso/xml/id-wsf-2.0/sb2_usage_directive.c +++ b/lasso/xml/id-wsf-2.0/sb2_usage_directive.c @@ -67,7 +67,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2Sb2UsageDirective *node) { - node->ref = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sb2_user_interaction_header.c b/lasso/xml/id-wsf-2.0/sb2_user_interaction_header.c index 17831f5b..4696f9be 100644 --- a/lasso/xml/id-wsf-2.0/sb2_user_interaction_header.c +++ b/lasso/xml/id-wsf-2.0/sb2_user_interaction_header.c @@ -79,11 +79,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2Sb2UserInteractionHeader *node) { - node->InteractionService = NULL; - node->interact = NULL; - node->language = NULL; - node->redirect = FALSE; - node->maxInteractTime = 0; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sbf_framework.c b/lasso/xml/id-wsf-2.0/sbf_framework.c index 4c4a388b..81e8c7db 100644 --- a/lasso/xml/id-wsf-2.0/sbf_framework.c +++ b/lasso/xml/id-wsf-2.0/sbf_framework.c @@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2SbfFramework *node) { - node->version = NULL; node->attributes = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sec_token.c b/lasso/xml/id-wsf-2.0/sec_token.c index 67e8abf5..aa6384db 100644 --- a/lasso/xml/id-wsf-2.0/sec_token.c +++ b/lasso/xml/id-wsf-2.0/sec_token.c @@ -69,14 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SecToken *node) -{ - node->any = NULL; - node->id = NULL; - node->ref = NULL; - node->usage = NULL; -} static void class_init(LassoIdWsf2SecTokenClass *klass) @@ -105,7 +97,7 @@ lasso_idwsf2_sec_token_get_type() NULL, sizeof(LassoIdWsf2SecToken), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/sec_token_policy.c b/lasso/xml/id-wsf-2.0/sec_token_policy.c index 5c1c14ac..21551b2f 100644 --- a/lasso/xml/id-wsf-2.0/sec_token_policy.c +++ b/lasso/xml/id-wsf-2.0/sec_token_policy.c @@ -77,11 +77,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2SecTokenPolicy *node) { - node->any = NULL; - node->validUntil = NULL; - node->issueTo = NULL; - node->type = NULL; - node->wantDSEPR = FALSE; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/sec_transited_provider_path.c b/lasso/xml/id-wsf-2.0/sec_transited_provider_path.c index 577c7589..45ef9381 100644 --- a/lasso/xml/id-wsf-2.0/sec_transited_provider_path.c +++ b/lasso/xml/id-wsf-2.0/sec_transited_provider_path.c @@ -60,11 +60,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SecTransitedProviderPath *node) -{ - node->TransitedProvider = NULL; -} static void class_init(LassoIdWsf2SecTransitedProviderPathClass *klass) @@ -93,7 +88,7 @@ lasso_idwsf2_sec_transited_provider_path_get_type() NULL, sizeof(LassoIdWsf2SecTransitedProviderPath), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subs_notification.c b/lasso/xml/id-wsf-2.0/subs_notification.c index d29755e6..0c44468c 100644 --- a/lasso/xml/id-wsf-2.0/subs_notification.c +++ b/lasso/xml/id-wsf-2.0/subs_notification.c @@ -72,15 +72,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsNotification *node) -{ - node->TestResult = NULL; - node->id = NULL; - node->subscriptionID = NULL; - node->expires = NULL; - node->endReason = NULL; -} static void class_init(LassoIdWsf2SubsNotificationClass *klass) @@ -109,7 +100,7 @@ lasso_idwsf2_subs_notification_get_type() NULL, sizeof(LassoIdWsf2SubsNotification), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subs_ref_item.c b/lasso/xml/id-wsf-2.0/subs_ref_item.c index 7910fea0..649b6455 100644 --- a/lasso/xml/id-wsf-2.0/subs_ref_item.c +++ b/lasso/xml/id-wsf-2.0/subs_ref_item.c @@ -60,12 +60,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefItem *node) -{ - node->subscriptionID = NULL; - node->itemIDRef = NULL; -} static void class_init(LassoIdWsf2SubsRefItemClass *klass) @@ -94,7 +88,7 @@ lasso_idwsf2_subs_ref_item_get_type() NULL, sizeof(LassoIdWsf2SubsRefItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subs_subscription.c b/lasso/xml/id-wsf-2.0/subs_subscription.c index fb540795..560935fd 100644 --- a/lasso/xml/id-wsf-2.0/subs_subscription.c +++ b/lasso/xml/id-wsf-2.0/subs_subscription.c @@ -92,19 +92,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsSubscription *node) -{ - node->RefItem = NULL; - node->Extension = NULL; - node->subscriptionID = NULL; - node->notifyToRef = NULL; - node->adminNotifyToRef = NULL; - node->starts = NULL; - node->expires = NULL; - node->id = NULL; - node->includeData = NULL; -} static void class_init(LassoIdWsf2SubsSubscriptionClass *klass) @@ -133,7 +120,7 @@ lasso_idwsf2_subs_subscription_get_type() NULL, sizeof(LassoIdWsf2SubsSubscription), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_app_data.c b/lasso/xml/id-wsf-2.0/subsref_app_data.c index 1b428f03..819b210e 100644 --- a/lasso/xml/id-wsf-2.0/subsref_app_data.c +++ b/lasso/xml/id-wsf-2.0/subsref_app_data.c @@ -51,12 +51,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefAppData *node) -{ - node->any = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2SubsRefAppDataClass *klass) @@ -85,7 +79,7 @@ lasso_idwsf2_subsref_app_data_get_type() NULL, sizeof(LassoIdWsf2SubsRefAppData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_create.c b/lasso/xml/id-wsf-2.0/subsref_create.c index 86c5bdb0..30632793 100644 --- a/lasso/xml/id-wsf-2.0/subsref_create.c +++ b/lasso/xml/id-wsf-2.0/subsref_create.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefCreate *node) -{ - node->Subscription = NULL; - node->CreateItem = NULL; - node->ResultQuery = NULL; -} static void class_init(LassoIdWsf2SubsRefCreateClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_subsref_create_get_type() NULL, sizeof(LassoIdWsf2SubsRefCreate), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_create_item.c b/lasso/xml/id-wsf-2.0/subsref_create_item.c index 2e41d850..428cacdb 100644 --- a/lasso/xml/id-wsf-2.0/subsref_create_item.c +++ b/lasso/xml/id-wsf-2.0/subsref_create_item.c @@ -66,14 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefCreateItem *node) -{ - node->NewData = NULL; - node->objectType = NULL; - node->id = NULL; - node->itemID = NULL; -} static void class_init(LassoIdWsf2SubsRefCreateItemClass *klass) @@ -102,7 +94,7 @@ lasso_idwsf2_subsref_create_item_get_type() NULL, sizeof(LassoIdWsf2SubsRefCreateItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_data.c b/lasso/xml/id-wsf-2.0/subsref_data.c index 64d5ef49..0eed93c4 100644 --- a/lasso/xml/id-wsf-2.0/subsref_data.c +++ b/lasso/xml/id-wsf-2.0/subsref_data.c @@ -68,9 +68,7 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2SubsRefData *node) { - node->remaining = 0; node->nextOffset = -1; - node->setID = NULL; } static void diff --git a/lasso/xml/id-wsf-2.0/subsref_data_response.c b/lasso/xml/id-wsf-2.0/subsref_data_response.c index 59803d47..ba216857 100644 --- a/lasso/xml/id-wsf-2.0/subsref_data_response.c +++ b/lasso/xml/id-wsf-2.0/subsref_data_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefDataResponse *node) -{ - node->ItemData = NULL; -} static void class_init(LassoIdWsf2SubsRefDataResponseClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_subsref_data_response_get_type() NULL, sizeof(LassoIdWsf2SubsRefDataResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_delete.c b/lasso/xml/id-wsf-2.0/subsref_delete.c index e5ff293f..2f863635 100644 --- a/lasso/xml/id-wsf-2.0/subsref_delete.c +++ b/lasso/xml/id-wsf-2.0/subsref_delete.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefDelete *node) -{ - node->DeleteItem = NULL; -} static void class_init(LassoIdWsf2SubsRefDeleteClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_subsref_delete_get_type() NULL, sizeof(LassoIdWsf2SubsRefDelete), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_delete_item.c b/lasso/xml/id-wsf-2.0/subsref_delete_item.c index ff1f23e8..a2de9bca 100644 --- a/lasso/xml/id-wsf-2.0/subsref_delete_item.c +++ b/lasso/xml/id-wsf-2.0/subsref_delete_item.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefDeleteItem *node) -{ - node->Select = NULL; -} static void class_init(LassoIdWsf2SubsRefDeleteItemClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_subsref_delete_item_get_type() NULL, sizeof(LassoIdWsf2SubsRefDeleteItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_item_data.c b/lasso/xml/id-wsf-2.0/subsref_item_data.c index d066372f..81de1ff3 100644 --- a/lasso/xml/id-wsf-2.0/subsref_item_data.c +++ b/lasso/xml/id-wsf-2.0/subsref_item_data.c @@ -65,13 +65,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefItemData *node) -{ - node->itemIDRef = NULL; - node->notSorted = NULL; - node->changeFormat = NULL; -} static void class_init(LassoIdWsf2SubsRefItemDataClass *klass) @@ -100,7 +93,7 @@ lasso_idwsf2_subsref_item_data_get_type() NULL, sizeof(LassoIdWsf2SubsRefItemData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_modify.c b/lasso/xml/id-wsf-2.0/subsref_modify.c index 5f30ddc7..a8841b38 100644 --- a/lasso/xml/id-wsf-2.0/subsref_modify.c +++ b/lasso/xml/id-wsf-2.0/subsref_modify.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefModify *node) -{ - node->Subscription = NULL; - node->ModifyItem = NULL; - node->ResultQuery = NULL; -} static void class_init(LassoIdWsf2SubsRefModifyClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_subsref_modify_get_type() NULL, sizeof(LassoIdWsf2SubsRefModify), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_modify_item.c b/lasso/xml/id-wsf-2.0/subsref_modify_item.c index 3f440e7c..ed260af7 100644 --- a/lasso/xml/id-wsf-2.0/subsref_modify_item.c +++ b/lasso/xml/id-wsf-2.0/subsref_modify_item.c @@ -71,16 +71,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefModifyItem *node) -{ - node->Select = NULL; - node->NewData = NULL; - node->notChangedSince = NULL; - node->overrideAllowed = FALSE; - node->id = NULL; - node->itemID = NULL; -} static void class_init(LassoIdWsf2SubsRefModifyItemClass *klass) @@ -109,7 +99,7 @@ lasso_idwsf2_subsref_modify_item_get_type() NULL, sizeof(LassoIdWsf2SubsRefModifyItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_notification.c b/lasso/xml/id-wsf-2.0/subsref_notification.c index e74f29a9..2230de18 100644 --- a/lasso/xml/id-wsf-2.0/subsref_notification.c +++ b/lasso/xml/id-wsf-2.0/subsref_notification.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefNotification *node) -{ - node->ItemData = NULL; -} static void class_init(LassoIdWsf2SubsRefNotificationClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_subsref_notification_get_type() NULL, sizeof(LassoIdWsf2SubsRefNotification), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_notify.c b/lasso/xml/id-wsf-2.0/subsref_notify.c index ea77f96a..66359ab4 100644 --- a/lasso/xml/id-wsf-2.0/subsref_notify.c +++ b/lasso/xml/id-wsf-2.0/subsref_notify.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefNotify *node) -{ - node->Notification = NULL; - node->timeStamp = NULL; -} static void class_init(LassoIdWsf2SubsRefNotifyClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_subsref_notify_get_type() NULL, sizeof(LassoIdWsf2SubsRefNotify), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_query.c b/lasso/xml/id-wsf-2.0/subsref_query.c index a5d33224..be2d439a 100644 --- a/lasso/xml/id-wsf-2.0/subsref_query.c +++ b/lasso/xml/id-wsf-2.0/subsref_query.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefQuery *node) -{ - node->TestItem = NULL; - node->QueryItem = NULL; - node->Subscription = NULL; -} static void class_init(LassoIdWsf2SubsRefQueryClass *klass) @@ -104,7 +97,7 @@ lasso_idwsf2_subsref_query_get_type() NULL, sizeof(LassoIdWsf2SubsRefQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_query_item.c b/lasso/xml/id-wsf-2.0/subsref_query_item.c index 5682624b..94f53d8e 100644 --- a/lasso/xml/id-wsf-2.0/subsref_query_item.c +++ b/lasso/xml/id-wsf-2.0/subsref_query_item.c @@ -72,8 +72,6 @@ instance_init(LassoIdWsf2SubsRefQueryItem *node) { node->count = -1; node->offset = -1; - node->setID = NULL; - node->setReq = NULL; } static void diff --git a/lasso/xml/id-wsf-2.0/subsref_query_response.c b/lasso/xml/id-wsf-2.0/subsref_query_response.c index 7b468776..cb5d903c 100644 --- a/lasso/xml/id-wsf-2.0/subsref_query_response.c +++ b/lasso/xml/id-wsf-2.0/subsref_query_response.c @@ -67,12 +67,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefQueryResponse *node) -{ - node->TestResult = NULL; - node->Data = NULL; -} static void class_init(LassoIdWsf2SubsRefQueryResponseClass *klass) @@ -101,7 +95,7 @@ lasso_idwsf2_subsref_query_response_get_type() NULL, sizeof(LassoIdWsf2SubsRefQueryResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_result_query.c b/lasso/xml/id-wsf-2.0/subsref_result_query.c index 233350ea..c1d8c2b3 100644 --- a/lasso/xml/id-wsf-2.0/subsref_result_query.c +++ b/lasso/xml/id-wsf-2.0/subsref_result_query.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefResultQuery *node) -{ - node->Select = NULL; - node->Sort = NULL; -} static void class_init(LassoIdWsf2SubsRefResultQueryClass *klass) @@ -100,7 +94,7 @@ lasso_idwsf2_subsref_result_query_get_type() NULL, sizeof(LassoIdWsf2SubsRefResultQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_subscription.c b/lasso/xml/id-wsf-2.0/subsref_subscription.c index 13ddcb44..5f4f29eb 100644 --- a/lasso/xml/id-wsf-2.0/subsref_subscription.c +++ b/lasso/xml/id-wsf-2.0/subsref_subscription.c @@ -70,13 +70,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefSubscription *node) -{ - node->ResultQuery = NULL; - node->Aggregation = NULL; - node->Trigger = NULL; -} static void class_init(LassoIdWsf2SubsRefSubscriptionClass *klass) @@ -105,7 +98,7 @@ lasso_idwsf2_subsref_subscription_get_type() NULL, sizeof(LassoIdWsf2SubsRefSubscription), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/subsref_test_item.c b/lasso/xml/id-wsf-2.0/subsref_test_item.c index 5b8847fb..87607a89 100644 --- a/lasso/xml/id-wsf-2.0/subsref_test_item.c +++ b/lasso/xml/id-wsf-2.0/subsref_test_item.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2SubsRefTestItem *node) -{ - node->TestOp = NULL; -} static void class_init(LassoIdWsf2SubsRefTestItemClass *klass) @@ -96,7 +91,7 @@ lasso_idwsf2_subsref_test_item_get_type() NULL, sizeof(LassoIdWsf2SubsRefTestItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/id-wsf-2.0/util_response.c b/lasso/xml/id-wsf-2.0/util_response.c index de27cdb8..bf5a7a79 100644 --- a/lasso/xml/id-wsf-2.0/util_response.c +++ b/lasso/xml/id-wsf-2.0/util_response.c @@ -73,9 +73,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoIdWsf2UtilResponse *node) { - node->Status = NULL; - node->Extension = NULL; - node->itemIDRef = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/id-wsf-2.0/util_status.c b/lasso/xml/id-wsf-2.0/util_status.c index 7ee5b410..1464097f 100644 --- a/lasso/xml/id-wsf-2.0/util_status.c +++ b/lasso/xml/id-wsf-2.0/util_status.c @@ -75,14 +75,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIdWsf2UtilStatus *node) -{ - node->Status = NULL; - node->code = NULL; - node->ref = NULL; - node->comment = NULL; -} static void class_init(LassoIdWsf2UtilStatusClass *klass) @@ -111,7 +103,7 @@ lasso_idwsf2_util_status_get_type() NULL, sizeof(LassoIdWsf2UtilStatus), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_help.c b/lasso/xml/is_help.c index 98b44b5b..f9ceed75 100644 --- a/lasso/xml/is_help.c +++ b/lasso/xml/is_help.c @@ -57,13 +57,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsHelp *node) -{ - node->label = NULL; - node->link = NULL; - node->moreLink = NULL; -} static void class_init(LassoIsHelpClass *klass) @@ -91,7 +84,7 @@ lasso_is_help_get_type() NULL, sizeof(LassoIsHelp), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_inquiry.c b/lasso/xml/is_inquiry.c index b0f53991..d4ac0d74 100644 --- a/lasso/xml/is_inquiry.c +++ b/lasso/xml/is_inquiry.c @@ -68,16 +68,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsInquiry *node) -{ - node->Help = NULL; - node->Select = NULL; - node->Confirm = NULL; - node->Text = NULL; - node->id = NULL; - node->title = NULL; -} static void class_init(LassoIsInquiryClass *klass) @@ -105,7 +95,7 @@ lasso_is_inquiry_get_type() NULL, sizeof(LassoIsInquiry), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_inquiry_element.c b/lasso/xml/is_inquiry_element.c index 4d72fbc7..ae8b4ec8 100644 --- a/lasso/xml/is_inquiry_element.c +++ b/lasso/xml/is_inquiry_element.c @@ -62,15 +62,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsInquiryElement *node) -{ - node->Help = NULL; - node->Hint = NULL; - node->Label = NULL; - node->Value = NULL; - node->name = NULL; -} static void class_init(LassoIsInquiryElementClass *klass) @@ -98,7 +89,7 @@ lasso_is_inquiry_element_get_type() NULL, sizeof(LassoIsInquiryElement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_interaction_request.c b/lasso/xml/is_interaction_request.c index 691b39e6..cfc08a61 100644 --- a/lasso/xml/is_interaction_request.c +++ b/lasso/xml/is_interaction_request.c @@ -74,18 +74,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsInteractionRequest *node) -{ - node->ResourceID = NULL; - node->EncryptedResourceID = NULL; - node->Inquiry = NULL; - /* TODO : KeyInfo */ - node->id = NULL; - node->language = NULL; - node->maxInteractTime = 0; - /* TODO : signed */ -} static void class_init(LassoIsInteractionRequestClass *klass) @@ -113,7 +101,7 @@ lasso_is_interaction_request_get_type() NULL, sizeof(LassoIsInteractionRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_interaction_response.c b/lasso/xml/is_interaction_response.c index 55065b39..3808f8d1 100644 --- a/lasso/xml/is_interaction_response.c +++ b/lasso/xml/is_interaction_response.c @@ -65,13 +65,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsInteractionResponse *node) -{ - node->Status = NULL; - node->InteractionStatement = NULL; - node->Parameter = NULL; -} static void class_init(LassoIsInteractionResponseClass *klass) @@ -99,7 +92,7 @@ lasso_is_interaction_response_get_type() NULL, sizeof(LassoIsInteractionResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_interaction_statement.c b/lasso/xml/is_interaction_statement.c index 58299f10..bc587668 100644 --- a/lasso/xml/is_interaction_statement.c +++ b/lasso/xml/is_interaction_statement.c @@ -57,11 +57,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsInteractionStatement *node) -{ - node->Inquiry = NULL; -} static void class_init(LassoIsInteractionStatementClass *klass) @@ -89,7 +84,7 @@ lasso_is_interaction_statement_get_type() NULL, sizeof(LassoIsInteractionStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_item.c b/lasso/xml/is_item.c index d0370f4d..4e2b3975 100644 --- a/lasso/xml/is_item.c +++ b/lasso/xml/is_item.c @@ -62,13 +62,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsItem *node) -{ - node->Hint = NULL; - node->label = NULL; - node->value = NULL; -} static void class_init(LassoIsItemClass *klass) @@ -96,7 +89,7 @@ lasso_is_item_get_type() NULL, sizeof(LassoIsItem), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_parameter.c b/lasso/xml/is_parameter.c index 347527fb..387c5ef5 100644 --- a/lasso/xml/is_parameter.c +++ b/lasso/xml/is_parameter.c @@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsParameter *node) -{ - node->name = NULL; - node->value = NULL; -} static void class_init(LassoIsParameterClass *klass) @@ -88,7 +82,7 @@ lasso_is_parameter_get_type() NULL, sizeof(LassoIsParameter), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_redirect_request.c b/lasso/xml/is_redirect_request.c index 909ca2c8..fcdb4cdd 100644 --- a/lasso/xml/is_redirect_request.c +++ b/lasso/xml/is_redirect_request.c @@ -54,11 +54,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsRedirectRequest *node) -{ - node->redirectURL = NULL; -} static void class_init(LassoIsRedirectRequestClass *klass) @@ -86,7 +81,7 @@ lasso_is_redirect_request_get_type() NULL, sizeof(LassoIsRedirectRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_select.c b/lasso/xml/is_select.c index 1cf6e557..e3f2a03e 100644 --- a/lasso/xml/is_select.c +++ b/lasso/xml/is_select.c @@ -62,12 +62,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsSelect *node) -{ - node->Item = NULL; - node->multiple = FALSE; -} static void class_init(LassoIsSelectClass *klass) @@ -95,7 +89,7 @@ lasso_is_select_get_type() NULL, sizeof(LassoIsSelect), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_text.c b/lasso/xml/is_text.c index 2f6874d5..83093caa 100644 --- a/lasso/xml/is_text.c +++ b/lasso/xml/is_text.c @@ -62,13 +62,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoIsText *node) -{ - node->minChars = 0; - node->maxChars = 0; - node->format = NULL; -} static void class_init(LassoIsTextClass *klass) @@ -96,7 +89,7 @@ lasso_is_text_get_type() NULL, sizeof(LassoIsText), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/is_user_interaction.c b/lasso/xml/is_user_interaction.c index ac79261d..3c53558e 100644 --- a/lasso/xml/is_user_interaction.c +++ b/lasso/xml/is_user_interaction.c @@ -73,12 +73,7 @@ static struct XmlSnippet schema_snippets[] = { static void instance_init(LassoIsUserInteraction *node) { - node->InteractionService = NULL; - node->id = NULL; node->interact = g_strdup(LASSO_IS_INTERACT_ATTR_INTERACT_IF_NEEDED); - node->language = NULL; - node->redirect = FALSE; - node->maxInteractTime = 0; } static void diff --git a/lasso/xml/lib_assertion.c b/lasso/xml/lib_assertion.c index e1772ca8..b00412c5 100644 --- a/lasso/xml/lib_assertion.c +++ b/lasso/xml/lib_assertion.c @@ -71,11 +71,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibAssertion *node) -{ - node->InResponseTo = NULL; -} static void class_init(LassoLibAssertionClass *klass) @@ -103,7 +98,7 @@ lasso_lib_assertion_get_type() NULL, sizeof(LassoLibAssertion), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_authentication_statement.c b/lasso/xml/lib_authentication_statement.c index a1afdff5..7091a6f5 100644 --- a/lasso/xml/lib_authentication_statement.c +++ b/lasso/xml/lib_authentication_statement.c @@ -67,13 +67,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibAuthenticationStatement *node) -{ - node->AuthnContext = NULL; - node->ReauthenticateOnOrAfter = NULL; - node->SessionIndex = NULL; -} static void class_init(LassoLibAuthenticationStatementClass *klass) @@ -101,7 +94,7 @@ lasso_lib_authentication_statement_get_type() NULL, sizeof(LassoLibAuthenticationStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_authn_context.c b/lasso/xml/lib_authn_context.c index 76631ab0..f0d5431d 100644 --- a/lasso/xml/lib_authn_context.c +++ b/lasso/xml/lib_authn_context.c @@ -62,12 +62,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibAuthnContext *node) -{ - node->AuthnContextClassRef = NULL; - node->AuthnContextStatementRef = NULL; -} static void class_init(LassoLibAuthnContextClass *klass) @@ -95,7 +89,7 @@ lasso_lib_authn_context_get_type() NULL, sizeof(LassoLibAuthnContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_authn_request.c b/lasso/xml/lib_authn_request.c index be4bcdc0..d7afd060 100644 --- a/lasso/xml/lib_authn_request.c +++ b/lasso/xml/lib_authn_request.c @@ -167,17 +167,7 @@ init_from_query(LassoNode *node, char **query_fields) static void instance_init(LassoLibAuthnRequest *node) { - node->ProviderID = NULL; - node->AffiliationID = NULL; - node->NameIDPolicy = NULL; - node->ForceAuthn = FALSE; node->IsPassive = TRUE; - node->ProtocolProfile = NULL; - node->AssertionConsumerServiceID = NULL; - node->RequestAuthnContext = NULL; - node->RelayState = NULL; - node->Scoping = NULL; - node->consent = NULL; } static void diff --git a/lasso/xml/lib_authn_request_envelope.c b/lasso/xml/lib_authn_request_envelope.c index 2fac3a26..bb9e063f 100644 --- a/lasso/xml/lib_authn_request_envelope.c +++ b/lasso/xml/lib_authn_request_envelope.c @@ -93,17 +93,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibAuthnRequestEnvelope *node) -{ - node->Extension = NULL; - node->AuthnRequest = NULL; - node->ProviderID = NULL; - node->ProviderName = NULL; - node->AssertionConsumerServiceURL = NULL; - node->IDPList = NULL; - node->IsPassive = FALSE; -} static void class_init(LassoLibAuthnRequestEnvelopeClass *klass) @@ -131,7 +120,7 @@ lasso_lib_authn_request_envelope_get_type() NULL, sizeof(LassoLibAuthnRequestEnvelope), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_authn_response.c b/lasso/xml/lib_authn_response.c index d6f6ed31..a7d0accf 100644 --- a/lasso/xml/lib_authn_response.c +++ b/lasso/xml/lib_authn_response.c @@ -67,14 +67,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibAuthnResponse *node) -{ - node->Extension = NULL; - node->ProviderID = NULL; - node->RelayState = NULL; - node->consent = NULL; -} static void class_init(LassoLibAuthnResponseClass *klass) @@ -102,7 +94,7 @@ lasso_lib_authn_response_get_type() NULL, sizeof(LassoLibAuthnResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_authn_response_envelope.c b/lasso/xml/lib_authn_response_envelope.c index 95de6ad6..38ab1f16 100644 --- a/lasso/xml/lib_authn_response_envelope.c +++ b/lasso/xml/lib_authn_response_envelope.c @@ -48,13 +48,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibAuthnResponseEnvelope *node) -{ - node->Extension = NULL; - node->AuthnResponse = NULL; - node->AssertionConsumerServiceURL = NULL; -} static void class_init(LassoLibAuthnResponseEnvelopeClass *klass) @@ -82,7 +75,7 @@ lasso_lib_authn_response_envelope_get_type() NULL, sizeof(LassoLibAuthnResponseEnvelope), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_federation_termination_notification.c b/lasso/xml/lib_federation_termination_notification.c index 9e90b091..c08a1320 100644 --- a/lasso/xml/lib_federation_termination_notification.c +++ b/lasso/xml/lib_federation_termination_notification.c @@ -134,14 +134,6 @@ init_from_query(LassoNode *node, char **query_fields) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibFederationTerminationNotification *node) -{ - node->ProviderID = NULL; - node->NameIdentifier = NULL; - node->consent = NULL; - node->RelayState = NULL; -} static void class_init(LassoLibFederationTerminationNotificationClass *klass) @@ -173,7 +165,7 @@ lasso_lib_federation_termination_notification_get_type() NULL, sizeof(LassoLibFederationTerminationNotification), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_idp_entries.c b/lasso/xml/lib_idp_entries.c index f73a7218..bab525b7 100644 --- a/lasso/xml/lib_idp_entries.c +++ b/lasso/xml/lib_idp_entries.c @@ -56,11 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibIDPEntries *node) -{ - node->IDPEntry = NULL; -} static void class_init(LassoLibIDPEntriesClass *klass) @@ -88,7 +83,7 @@ lasso_lib_idp_entries_get_type() NULL, sizeof(LassoLibIDPEntries), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_idp_entry.c b/lasso/xml/lib_idp_entry.c index c37ef405..d3c0810a 100644 --- a/lasso/xml/lib_idp_entry.c +++ b/lasso/xml/lib_idp_entry.c @@ -59,13 +59,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibIDPEntry *node) -{ - node->ProviderID = NULL; - node->ProviderName = NULL; - node->Loc = NULL; -} static void class_init(LassoLibIDPEntryClass *klass) @@ -93,7 +86,7 @@ lasso_lib_idp_entry_get_type() NULL, sizeof(LassoLibIDPEntry), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_idp_list.c b/lasso/xml/lib_idp_list.c index e4c892eb..c7423e44 100644 --- a/lasso/xml/lib_idp_list.c +++ b/lasso/xml/lib_idp_list.c @@ -58,12 +58,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibIDPList *node) -{ - node->IDPEntries = NULL; - node->GetComplete = NULL; -} static void class_init(LassoLibIDPListClass *klass) @@ -91,7 +85,7 @@ lasso_lib_idp_list_get_type() NULL, sizeof(LassoLibIDPList), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_logout_request.c b/lasso/xml/lib_logout_request.c index e76d42f9..9a603fca 100644 --- a/lasso/xml/lib_logout_request.c +++ b/lasso/xml/lib_logout_request.c @@ -122,15 +122,6 @@ cleanup: /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibLogoutRequest *node) -{ - node->ProviderID = NULL; - node->NameIdentifier = NULL; - node->SessionIndex = NULL; - node->RelayState = NULL; - node->consent = NULL; -} static void class_init(LassoLibLogoutRequestClass *klass) @@ -161,7 +152,7 @@ lasso_lib_logout_request_get_type() NULL, sizeof(LassoLibLogoutRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_name_identifier_mapping_request.c b/lasso/xml/lib_name_identifier_mapping_request.c index 35098274..3c675e5b 100644 --- a/lasso/xml/lib_name_identifier_mapping_request.c +++ b/lasso/xml/lib_name_identifier_mapping_request.c @@ -73,15 +73,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibNameIdentifierMappingRequest *node) -{ - node->Extension = NULL; - node->ProviderID = NULL; - node->NameIdentifier = NULL; - node->TargetNamespace = NULL; - node->consent = NULL; -} static void class_init(LassoLibNameIdentifierMappingRequestClass *klass) @@ -109,7 +100,7 @@ lasso_lib_name_identifier_mapping_request_get_type() NULL, sizeof(LassoLibNameIdentifierMappingRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_name_identifier_mapping_response.c b/lasso/xml/lib_name_identifier_mapping_response.c index d4edd40d..43777a87 100644 --- a/lasso/xml/lib_name_identifier_mapping_response.c +++ b/lasso/xml/lib_name_identifier_mapping_response.c @@ -68,14 +68,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibNameIdentifierMappingResponse *node) -{ - node->Extension = NULL; - node->ProviderID = NULL; - node->Status = NULL; - node->NameIdentifier = NULL; -} static void class_init(LassoLibNameIdentifierMappingResponseClass *klass) @@ -103,7 +95,7 @@ lasso_lib_name_identifier_mapping_response_get_type() NULL, sizeof(LassoLibNameIdentifierMappingResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_register_name_identifier_request.c b/lasso/xml/lib_register_name_identifier_request.c index f31bb422..87a61af4 100644 --- a/lasso/xml/lib_register_name_identifier_request.c +++ b/lasso/xml/lib_register_name_identifier_request.c @@ -136,15 +136,6 @@ init_from_query(LassoNode *node, char **query_fields) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibRegisterNameIdentifierRequest *node) -{ - node->ProviderID = NULL; - node->IDPProvidedNameIdentifier = NULL; - node->SPProvidedNameIdentifier = NULL; - node->OldProvidedNameIdentifier = NULL; - node->RelayState = NULL; -} static void class_init(LassoLibRegisterNameIdentifierRequestClass *klass) @@ -175,7 +166,7 @@ lasso_lib_register_name_identifier_request_get_type() NULL, sizeof(LassoLibRegisterNameIdentifierRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_request_authn_context.c b/lasso/xml/lib_request_authn_context.c index a04a93af..4e4d7380 100644 --- a/lasso/xml/lib_request_authn_context.c +++ b/lasso/xml/lib_request_authn_context.c @@ -68,13 +68,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibRequestAuthnContext *node) -{ - node->AuthnContextClassRef = NULL; - node->AuthnContextStatementRef = NULL; - node->AuthnContextComparison = NULL; -} static void class_init(LassoLibRequestAuthnContextClass *klass) @@ -102,7 +95,7 @@ lasso_lib_request_authn_context_get_type() NULL, sizeof(LassoLibRequestAuthnContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_scoping.c b/lasso/xml/lib_scoping.c index d01dcbac..f9fe0b7c 100644 --- a/lasso/xml/lib_scoping.c +++ b/lasso/xml/lib_scoping.c @@ -61,7 +61,6 @@ static void instance_init(LassoLibScoping *node) { node->ProxyCount = -1; - node->IDPList = NULL; } static void diff --git a/lasso/xml/lib_status_response.c b/lasso/xml/lib_status_response.c index e21f302a..efce3ed2 100644 --- a/lasso/xml/lib_status_response.c +++ b/lasso/xml/lib_status_response.c @@ -108,13 +108,6 @@ init_from_query(LassoNode *node, char **query_fields) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibStatusResponse *node) -{ - node->ProviderID = NULL; - node->Status = NULL; - node->RelayState = NULL; -} static void class_init(LassoLibStatusResponseClass *klass) @@ -145,7 +138,7 @@ lasso_lib_status_response_get_type() NULL, sizeof(LassoLibStatusResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/lib_subject.c b/lasso/xml/lib_subject.c index f2231175..442f8882 100644 --- a/lasso/xml/lib_subject.c +++ b/lasso/xml/lib_subject.c @@ -59,11 +59,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoLibSubject *node) -{ - node->IDPProvidedNameIdentifier = NULL; -} static void class_init(LassoLibSubjectClass *klass) @@ -91,7 +86,7 @@ lasso_lib_subject_get_type() NULL, sizeof(LassoLibSubject), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/misc_text_node.c b/lasso/xml/misc_text_node.c index bace9784..782c8719 100644 --- a/lasso/xml/misc_text_node.c +++ b/lasso/xml/misc_text_node.c @@ -110,16 +110,6 @@ finalize(GObject *object) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoMiscTextNode *node) -{ - node->content = NULL; - - node->name = NULL; - node->ns_href = NULL; - node->ns_prefix = NULL; - node->text_child = FALSE; -} static void class_init(LassoMiscTextNodeClass *klass) @@ -152,7 +142,7 @@ lasso_misc_text_node_get_type() NULL, sizeof(LassoMiscTextNode), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/sa_credentials.c b/lasso/xml/sa_credentials.c index 78306c21..e3151746 100644 --- a/lasso/xml/sa_credentials.c +++ b/lasso/xml/sa_credentials.c @@ -56,11 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaCredentials *node) -{ - node->any = NULL; -} static void class_init(LassoSaCredentialsClass *klass) @@ -87,7 +82,7 @@ lasso_sa_credentials_get_type() NULL, sizeof(LassoSaCredentials), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/sa_parameter.c b/lasso/xml/sa_parameter.c index 6319918a..6b2edf76 100644 --- a/lasso/xml/sa_parameter.c +++ b/lasso/xml/sa_parameter.c @@ -59,12 +59,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaParameter *node) -{ - node->content = NULL; - node->name = NULL; -} static void class_init(LassoSaParameterClass *klass) @@ -92,7 +86,7 @@ lasso_sa_parameter_get_type() NULL, sizeof(LassoSaParameter), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/sa_password_transforms.c b/lasso/xml/sa_password_transforms.c index ab0c6299..edd4cbaf 100644 --- a/lasso/xml/sa_password_transforms.c +++ b/lasso/xml/sa_password_transforms.c @@ -76,11 +76,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaPasswordTransforms *node) -{ - node->Transform = NULL; -} static void class_init(LassoSaPasswordTransformsClass *klass) @@ -108,7 +103,7 @@ lasso_sa_password_transforms_get_type() NULL, sizeof(LassoSaPasswordTransforms), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/sa_sasl_request.c b/lasso/xml/sa_sasl_request.c index 4d9745f3..1c79c5b8 100644 --- a/lasso/xml/sa_sasl_request.c +++ b/lasso/xml/sa_sasl_request.c @@ -78,17 +78,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaSASLRequest *node) -{ - node->Data = NULL; - node->RequestAuthnContext = NULL; - - node->mechanism = NULL; - node->authzID = NULL; - node->advisoryAuthnID = NULL; - node->id = NULL; -} static void class_init(LassoSaSASLRequestClass *klass) @@ -116,7 +105,7 @@ lasso_sa_sasl_request_get_type() NULL, sizeof(LassoSaSASLRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/sa_sasl_response.c b/lasso/xml/sa_sasl_response.c index 20c8ee82..e9e00f73 100644 --- a/lasso/xml/sa_sasl_response.c +++ b/lasso/xml/sa_sasl_response.c @@ -114,18 +114,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaSASLResponse *node) -{ - node->Status = NULL; - node->PasswordTransforms = NULL; - node->Data = NULL; - node->ResourceOffering = NULL; - node->Credentials = NULL; - node->any = NULL; - node->serverMechanism = NULL; - node->id = NULL; -} static void class_init(LassoSaSASLResponseClass *klass) @@ -154,7 +142,7 @@ lasso_sa_sasl_response_get_type() NULL, sizeof(LassoSaSASLResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/sa_transform.c b/lasso/xml/sa_transform.c index 603afcc5..352fd250 100644 --- a/lasso/xml/sa_transform.c +++ b/lasso/xml/sa_transform.c @@ -67,13 +67,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaTransform *node) -{ - node->Parameter = NULL; - node->name = NULL; - node->id = NULL; -} static void class_init(LassoSaTransformClass *klass) @@ -101,7 +94,7 @@ lasso_sa_transform_get_type() NULL, sizeof(LassoSaTransform), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_action.c b/lasso/xml/saml-2.0/saml2_action.c index c5183079..4805f42b 100644 --- a/lasso/xml/saml-2.0/saml2_action.c +++ b/lasso/xml/saml-2.0/saml2_action.c @@ -63,12 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2Action *node) -{ - node->content = NULL; - node->Namespace = NULL; -} static void class_init(LassoSaml2ActionClass *klass) @@ -97,7 +91,7 @@ lasso_saml2_action_get_type() NULL, sizeof(LassoSaml2Action), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_advice.c b/lasso/xml/saml-2.0/saml2_advice.c index 45342ae8..8b8261fb 100644 --- a/lasso/xml/saml-2.0/saml2_advice.c +++ b/lasso/xml/saml-2.0/saml2_advice.c @@ -69,14 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2Advice *node) -{ - node->AssertionIDRef = NULL; - node->AssertionURIRef = NULL; - node->Assertion = NULL; - node->EncryptedAssertion = NULL; -} static void class_init(LassoSaml2AdviceClass *klass) @@ -105,7 +97,7 @@ lasso_saml2_advice_get_type() NULL, sizeof(LassoSaml2Advice), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_assertion.c b/lasso/xml/saml-2.0/saml2_assertion.c index 2db39c9f..0b5acf1f 100644 --- a/lasso/xml/saml-2.0/saml2_assertion.c +++ b/lasso/xml/saml-2.0/saml2_assertion.c @@ -150,22 +150,7 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) static void instance_init(LassoSaml2Assertion *node) { - node->Issuer = NULL; - node->Subject = NULL; - node->Conditions = NULL; - node->Advice = NULL; - node->Statement = NULL; - node->AuthnStatement = NULL; - node->AuthzDecisionStatement = NULL; - node->AttributeStatement = NULL; - node->Version = NULL; - node->ID = NULL; - node->IssueInstant = NULL; node->sign_type = LASSO_SIGNATURE_TYPE_NONE; - node->private_key_file = NULL; - node->certificate_file = NULL; - node->encryption_activated = FALSE; - node->encryption_public_key_str = NULL; node->encryption_sym_key_type = LASSO_ENCRYPTION_SYM_KEY_TYPE_DEFAULT; } diff --git a/lasso/xml/saml-2.0/saml2_attribute.c b/lasso/xml/saml-2.0/saml2_attribute.c index 95c10640..c5dc64de 100644 --- a/lasso/xml/saml-2.0/saml2_attribute.c +++ b/lasso/xml/saml-2.0/saml2_attribute.c @@ -69,14 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2Attribute *node) -{ - node->AttributeValue = NULL; - node->Name = NULL; - node->NameFormat = NULL; - node->FriendlyName = NULL; -} static void class_init(LassoSaml2AttributeClass *klass) @@ -105,7 +97,7 @@ lasso_saml2_attribute_get_type() NULL, sizeof(LassoSaml2Attribute), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_attribute_statement.c b/lasso/xml/saml-2.0/saml2_attribute_statement.c index baec8ced..a7fa97b8 100644 --- a/lasso/xml/saml-2.0/saml2_attribute_statement.c +++ b/lasso/xml/saml-2.0/saml2_attribute_statement.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2AttributeStatement *node) -{ - node->Attribute = NULL; - node->EncryptedAttribute = NULL; -} static void class_init(LassoSaml2AttributeStatementClass *klass) @@ -100,7 +94,7 @@ lasso_saml2_attribute_statement_get_type() NULL, sizeof(LassoSaml2AttributeStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_audience_restriction.c b/lasso/xml/saml-2.0/saml2_audience_restriction.c index 14d2f2c8..cc1815bb 100644 --- a/lasso/xml/saml-2.0/saml2_audience_restriction.c +++ b/lasso/xml/saml-2.0/saml2_audience_restriction.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2AudienceRestriction *node) -{ - node->Audience = NULL; -} static void class_init(LassoSaml2AudienceRestrictionClass *klass) @@ -96,7 +91,7 @@ lasso_saml2_audience_restriction_get_type() NULL, sizeof(LassoSaml2AudienceRestriction), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_authn_context.c b/lasso/xml/saml-2.0/saml2_authn_context.c index eb901095..208ba3d1 100644 --- a/lasso/xml/saml-2.0/saml2_authn_context.c +++ b/lasso/xml/saml-2.0/saml2_authn_context.c @@ -78,14 +78,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2AuthnContext *node) -{ - node->AuthnContextClassRef = NULL; - node->AuthnContextDecl = NULL; - node->AuthnContextDeclRef = NULL; - node->AuthenticatingAuthority = NULL; -} static void class_init(LassoSaml2AuthnContextClass *klass) @@ -114,7 +106,7 @@ lasso_saml2_authn_context_get_type() NULL, sizeof(LassoSaml2AuthnContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_authn_statement.c b/lasso/xml/saml-2.0/saml2_authn_statement.c index 85fa8e6d..546d78ff 100644 --- a/lasso/xml/saml-2.0/saml2_authn_statement.c +++ b/lasso/xml/saml-2.0/saml2_authn_statement.c @@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2AuthnStatement *node) -{ - node->SubjectLocality = NULL; - node->AuthnContext = NULL; - node->AuthnInstant = NULL; - node->SessionIndex = NULL; - node->SessionNotOnOrAfter = NULL; -} static void class_init(LassoSaml2AuthnStatementClass *klass) @@ -112,7 +103,7 @@ lasso_saml2_authn_statement_get_type() NULL, sizeof(LassoSaml2AuthnStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_authz_decision_statement.c b/lasso/xml/saml-2.0/saml2_authz_decision_statement.c index ed1b8dfa..877bc7a6 100644 --- a/lasso/xml/saml-2.0/saml2_authz_decision_statement.c +++ b/lasso/xml/saml-2.0/saml2_authz_decision_statement.c @@ -72,13 +72,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2AuthzDecisionStatement *node) -{ - node->Action = NULL; - node->Evidence = NULL; - node->Resource = NULL; -} static void class_init(LassoSaml2AuthzDecisionStatementClass *klass) @@ -107,7 +100,7 @@ lasso_saml2_authz_decision_statement_get_type() NULL, sizeof(LassoSaml2AuthzDecisionStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_base_idabstract.c b/lasso/xml/saml-2.0/saml2_base_idabstract.c index 486a0b4a..46fbfca8 100644 --- a/lasso/xml/saml-2.0/saml2_base_idabstract.c +++ b/lasso/xml/saml-2.0/saml2_base_idabstract.c @@ -59,12 +59,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2BaseIDAbstract *node) -{ - node->NameQualifier = NULL; - node->SPNameQualifier = NULL; -} static void class_init(LassoSaml2BaseIDAbstractClass *klass) @@ -93,7 +87,7 @@ lasso_saml2_base_idabstract_get_type() NULL, sizeof(LassoSaml2BaseIDAbstract), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_conditions.c b/lasso/xml/saml-2.0/saml2_conditions.c index 1bad8f54..512556e3 100644 --- a/lasso/xml/saml-2.0/saml2_conditions.c +++ b/lasso/xml/saml-2.0/saml2_conditions.c @@ -74,16 +74,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2Conditions *node) -{ - node->Condition = NULL; - node->AudienceRestriction = NULL; - node->OneTimeUse = NULL; - node->ProxyRestriction = NULL; - node->NotBefore = NULL; - node->NotOnOrAfter = NULL; -} static void class_init(LassoSaml2ConditionsClass *klass) @@ -112,7 +102,7 @@ lasso_saml2_conditions_get_type() NULL, sizeof(LassoSaml2Conditions), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_encrypted_element.c b/lasso/xml/saml-2.0/saml2_encrypted_element.c index b8fdab1e..fc2d1005 100644 --- a/lasso/xml/saml-2.0/saml2_encrypted_element.c +++ b/lasso/xml/saml-2.0/saml2_encrypted_element.c @@ -72,14 +72,6 @@ static LassoNodeClass *parent_class = NULL; /*****************************************************************************/ static void -instance_init(LassoSaml2EncryptedElement *node) -{ - node->EncryptedData = NULL; - node->EncryptedKey = NULL; - node->original_data = NULL; -} - -static void class_init(LassoSaml2EncryptedElementClass *klass) { LassoNodeClass *nclass = LASSO_NODE_CLASS(klass); @@ -107,7 +99,7 @@ lasso_saml2_encrypted_element_get_type() NULL, sizeof(LassoSaml2EncryptedElement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_evidence.c b/lasso/xml/saml-2.0/saml2_evidence.c index 5b93cbad..0c13ff50 100644 --- a/lasso/xml/saml-2.0/saml2_evidence.c +++ b/lasso/xml/saml-2.0/saml2_evidence.c @@ -68,14 +68,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2Evidence *node) -{ - node->AssertionIDRef = NULL; - node->AssertionURIRef = NULL; - node->Assertion = NULL; - node->EncryptedAssertion = NULL; -} static void class_init(LassoSaml2EvidenceClass *klass) @@ -104,7 +96,7 @@ lasso_saml2_evidence_get_type() NULL, sizeof(LassoSaml2Evidence), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_key_info_confirmation_data.c b/lasso/xml/saml-2.0/saml2_key_info_confirmation_data.c index 916415d0..103b9024 100644 --- a/lasso/xml/saml-2.0/saml2_key_info_confirmation_data.c +++ b/lasso/xml/saml-2.0/saml2_key_info_confirmation_data.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2KeyInfoConfirmationData *node) -{ - node->KeyInfo = NULL; -} static void class_init(LassoSaml2KeyInfoConfirmationDataClass *klass) @@ -96,7 +91,7 @@ lasso_saml2_key_info_confirmation_data_get_type() NULL, sizeof(LassoSaml2KeyInfoConfirmationData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_name_id.c b/lasso/xml/saml-2.0/saml2_name_id.c index 61b47df8..ed42b5f7 100644 --- a/lasso/xml/saml-2.0/saml2_name_id.c +++ b/lasso/xml/saml-2.0/saml2_name_id.c @@ -71,15 +71,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2NameID *node) -{ - node->content = NULL; - node->Format = NULL; - node->SPProvidedID = NULL; - node->NameQualifier = NULL; - node->SPNameQualifier = NULL; -} static void class_init(LassoSaml2NameIDClass *klass) @@ -108,7 +99,7 @@ lasso_saml2_name_id_get_type() NULL, sizeof(LassoSaml2NameID), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_proxy_restriction.c b/lasso/xml/saml-2.0/saml2_proxy_restriction.c index 2f63f5d3..98d7ad45 100644 --- a/lasso/xml/saml-2.0/saml2_proxy_restriction.c +++ b/lasso/xml/saml-2.0/saml2_proxy_restriction.c @@ -66,11 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2ProxyRestriction *node) -{ - node->Audience = NULL; -} static void class_init(LassoSaml2ProxyRestrictionClass *klass) @@ -99,7 +94,7 @@ lasso_saml2_proxy_restriction_get_type() NULL, sizeof(LassoSaml2ProxyRestriction), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_subject.c b/lasso/xml/saml-2.0/saml2_subject.c index 14cb51e4..da40a485 100644 --- a/lasso/xml/saml-2.0/saml2_subject.c +++ b/lasso/xml/saml-2.0/saml2_subject.c @@ -74,14 +74,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2Subject *node) -{ - node->BaseID = NULL; - node->NameID = NULL; - node->EncryptedID = NULL; - node->SubjectConfirmation = NULL; -} static void class_init(LassoSaml2SubjectClass *klass) @@ -110,7 +102,7 @@ lasso_saml2_subject_get_type() NULL, sizeof(LassoSaml2Subject), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_subject_confirmation.c b/lasso/xml/saml-2.0/saml2_subject_confirmation.c index 587d5681..0d8ea46e 100644 --- a/lasso/xml/saml-2.0/saml2_subject_confirmation.c +++ b/lasso/xml/saml-2.0/saml2_subject_confirmation.c @@ -74,15 +74,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2SubjectConfirmation *node) -{ - node->BaseID = NULL; - node->NameID = NULL; - node->EncryptedID = NULL; - node->SubjectConfirmationData = NULL; - node->Method = NULL; -} static void class_init(LassoSaml2SubjectConfirmationClass *klass) @@ -111,7 +102,7 @@ lasso_saml2_subject_confirmation_get_type() NULL, sizeof(LassoSaml2SubjectConfirmation), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_subject_confirmation_data.c b/lasso/xml/saml-2.0/saml2_subject_confirmation_data.c index 7e135c95..7e7f97e4 100644 --- a/lasso/xml/saml-2.0/saml2_subject_confirmation_data.c +++ b/lasso/xml/saml-2.0/saml2_subject_confirmation_data.c @@ -77,15 +77,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2SubjectConfirmationData *node) -{ - node->NotBefore = NULL; - node->NotOnOrAfter = NULL; - node->Recipient = NULL; - node->InResponseTo = NULL; - node->Address = NULL; -} static void class_init(LassoSaml2SubjectConfirmationDataClass *klass) @@ -114,7 +105,7 @@ lasso_saml2_subject_confirmation_data_get_type() NULL, sizeof(LassoSaml2SubjectConfirmationData), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/saml2_subject_locality.c b/lasso/xml/saml-2.0/saml2_subject_locality.c index 6ed150bc..7b34220b 100644 --- a/lasso/xml/saml-2.0/saml2_subject_locality.c +++ b/lasso/xml/saml-2.0/saml2_subject_locality.c @@ -60,12 +60,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSaml2SubjectLocality *node) -{ - node->Address = NULL; - node->DNSName = NULL; -} static void class_init(LassoSaml2SubjectLocalityClass *klass) @@ -94,7 +88,7 @@ lasso_saml2_subject_locality_get_type() NULL, sizeof(LassoSaml2SubjectLocality), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_artifact_resolve.c b/lasso/xml/saml-2.0/samlp2_artifact_resolve.c index d88114eb..20c7e28d 100644 --- a/lasso/xml/saml-2.0/samlp2_artifact_resolve.c +++ b/lasso/xml/saml-2.0/samlp2_artifact_resolve.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2ArtifactResolve *node) -{ - node->Artifact = NULL; -} static void class_init(LassoSamlp2ArtifactResolveClass *klass) @@ -96,7 +91,7 @@ lasso_samlp2_artifact_resolve_get_type() NULL, sizeof(LassoSamlp2ArtifactResolve), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_artifact_response.c b/lasso/xml/saml-2.0/samlp2_artifact_response.c index dff27098..5f0537b9 100644 --- a/lasso/xml/saml-2.0/samlp2_artifact_response.c +++ b/lasso/xml/saml-2.0/samlp2_artifact_response.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2ArtifactResponse *node) -{ - node->any = NULL; -} static void class_init(LassoSamlp2ArtifactResponseClass *klass) @@ -96,7 +91,7 @@ lasso_samlp2_artifact_response_get_type() NULL, sizeof(LassoSamlp2ArtifactResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_assertion_id_request.c b/lasso/xml/saml-2.0/samlp2_assertion_id_request.c index d10904c2..6bc12498 100644 --- a/lasso/xml/saml-2.0/samlp2_assertion_id_request.c +++ b/lasso/xml/saml-2.0/samlp2_assertion_id_request.c @@ -61,11 +61,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2AssertionIDRequest *node) -{ - node->AssertionIDRef = NULL; -} static void class_init(LassoSamlp2AssertionIDRequestClass *klass) @@ -94,7 +89,7 @@ lasso_samlp2_assertion_id_request_get_type() NULL, sizeof(LassoSamlp2AssertionIDRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_attribute_query.c b/lasso/xml/saml-2.0/samlp2_attribute_query.c index 91279b42..1d941d5c 100644 --- a/lasso/xml/saml-2.0/samlp2_attribute_query.c +++ b/lasso/xml/saml-2.0/samlp2_attribute_query.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2AttributeQuery *node) -{ - node->Attribute = NULL; -} static void class_init(LassoSamlp2AttributeQueryClass *klass) @@ -96,7 +91,7 @@ lasso_samlp2_attribute_query_get_type() NULL, sizeof(LassoSamlp2AttributeQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_authn_query.c b/lasso/xml/saml-2.0/samlp2_authn_query.c index 790a534e..cbd58bff 100644 --- a/lasso/xml/saml-2.0/samlp2_authn_query.c +++ b/lasso/xml/saml-2.0/samlp2_authn_query.c @@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2AuthnQuery *node) -{ - node->RequestedAuthnContext = NULL; - node->SessionIndex = NULL; -} static void class_init(LassoSamlp2AuthnQueryClass *klass) @@ -100,7 +94,7 @@ lasso_samlp2_authn_query_get_type() NULL, sizeof(LassoSamlp2AuthnQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_authn_request.c b/lasso/xml/saml-2.0/samlp2_authn_request.c index 1699a8d9..f4f0d4cd 100644 --- a/lasso/xml/saml-2.0/samlp2_authn_request.c +++ b/lasso/xml/saml-2.0/samlp2_authn_request.c @@ -100,8 +100,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoSamlp2AuthnRequest *node) { - node->ForceAuthn = FALSE; - node->IsPassive = FALSE; node->AssertionConsumerServiceIndex = -1; node->AttributeConsumingServiceIndex = -1; } diff --git a/lasso/xml/saml-2.0/samlp2_authz_decision_query.c b/lasso/xml/saml-2.0/samlp2_authz_decision_query.c index 3d52e552..060fee03 100644 --- a/lasso/xml/saml-2.0/samlp2_authz_decision_query.c +++ b/lasso/xml/saml-2.0/samlp2_authz_decision_query.c @@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2AuthzDecisionQuery *node) -{ - node->Action = NULL; - node->Evidence = NULL; - node->Resource = NULL; -} static void class_init(LassoSamlp2AuthzDecisionQueryClass *klass) @@ -104,7 +97,7 @@ lasso_samlp2_authz_decision_query_get_type() NULL, sizeof(LassoSamlp2AuthzDecisionQuery), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_idp_entry.c b/lasso/xml/saml-2.0/samlp2_idp_entry.c index 5c0d86c8..04ea7255 100644 --- a/lasso/xml/saml-2.0/samlp2_idp_entry.c +++ b/lasso/xml/saml-2.0/samlp2_idp_entry.c @@ -63,13 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2IDPEntry *node) -{ - node->ProviderID = NULL; - node->Name = NULL; - node->Loc = NULL; -} static void class_init(LassoSamlp2IDPEntryClass *klass) @@ -98,7 +91,7 @@ lasso_samlp2_idp_entry_get_type() NULL, sizeof(LassoSamlp2IDPEntry), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_idp_list.c b/lasso/xml/saml-2.0/samlp2_idp_list.c index 3d7afc5c..1e9943fb 100644 --- a/lasso/xml/saml-2.0/samlp2_idp_list.c +++ b/lasso/xml/saml-2.0/samlp2_idp_list.c @@ -62,12 +62,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2IDPList *node) -{ - node->IDPEntry = NULL; - node->GetComplete = NULL; -} static void class_init(LassoSamlp2IDPListClass *klass) @@ -96,7 +90,7 @@ lasso_samlp2_idp_list_get_type() NULL, sizeof(LassoSamlp2IDPList), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_manage_name_id_request.c b/lasso/xml/saml-2.0/samlp2_manage_name_id_request.c index 24a7a9dd..dcdfc05b 100644 --- a/lasso/xml/saml-2.0/samlp2_manage_name_id_request.c +++ b/lasso/xml/saml-2.0/samlp2_manage_name_id_request.c @@ -78,15 +78,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2ManageNameIDRequest *node) -{ - node->NameID = NULL; - node->EncryptedID = NULL; - node->NewID = NULL; - node->NewEncryptedID = NULL; - node->Terminate = NULL; -} static void class_init(LassoSamlp2ManageNameIDRequestClass *klass) @@ -114,7 +105,7 @@ lasso_samlp2_manage_name_id_request_get_type() NULL, sizeof(LassoSamlp2ManageNameIDRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_name_id_mapping_request.c b/lasso/xml/saml-2.0/samlp2_name_id_mapping_request.c index e98fcfa0..a3900c4e 100644 --- a/lasso/xml/saml-2.0/samlp2_name_id_mapping_request.c +++ b/lasso/xml/saml-2.0/samlp2_name_id_mapping_request.c @@ -72,14 +72,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2NameIDMappingRequest *node) -{ - node->BaseID = NULL; - node->NameID = NULL; - node->EncryptedID = NULL; - node->NameIDPolicy = NULL; -} static void class_init(LassoSamlp2NameIDMappingRequestClass *klass) @@ -107,7 +99,7 @@ lasso_samlp2_name_id_mapping_request_get_type() NULL, sizeof(LassoSamlp2NameIDMappingRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_name_id_mapping_response.c b/lasso/xml/saml-2.0/samlp2_name_id_mapping_response.c index e0c3cbef..ee2ecb3e 100644 --- a/lasso/xml/saml-2.0/samlp2_name_id_mapping_response.c +++ b/lasso/xml/saml-2.0/samlp2_name_id_mapping_response.c @@ -64,12 +64,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2NameIDMappingResponse *node) -{ - node->NameID = NULL; - node->EncryptedID = NULL; -} static void class_init(LassoSamlp2NameIDMappingResponseClass *klass) @@ -97,7 +91,7 @@ lasso_samlp2_name_id_mapping_response_get_type() NULL, sizeof(LassoSamlp2NameIDMappingResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_name_id_policy.c b/lasso/xml/saml-2.0/samlp2_name_id_policy.c index c8e366ce..3930920c 100644 --- a/lasso/xml/saml-2.0/samlp2_name_id_policy.c +++ b/lasso/xml/saml-2.0/samlp2_name_id_policy.c @@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2NameIDPolicy *node) -{ - node->AllowCreate = FALSE; -} static void class_init(LassoSamlp2NameIDPolicyClass *klass) @@ -96,7 +91,7 @@ lasso_samlp2_name_id_policy_get_type() NULL, sizeof(LassoSamlp2NameIDPolicy), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_request_abstract.c b/lasso/xml/saml-2.0/samlp2_request_abstract.c index 284220ff..eb27c58a 100644 --- a/lasso/xml/saml-2.0/samlp2_request_abstract.c +++ b/lasso/xml/saml-2.0/samlp2_request_abstract.c @@ -148,16 +148,7 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) static void instance_init(LassoSamlp2RequestAbstract *node) { - node->Issuer = NULL; - node->Extensions = NULL; - node->ID = NULL; - node->Version = NULL; - node->IssueInstant = NULL; - node->Destination = NULL; - node->Consent = NULL; node->sign_type = LASSO_SIGNATURE_TYPE_NONE; - node->private_key_file = NULL; - node->certificate_file = NULL; } static void diff --git a/lasso/xml/saml-2.0/samlp2_requested_authn_context.c b/lasso/xml/saml-2.0/samlp2_requested_authn_context.c index 174b4dcd..9843f74c 100644 --- a/lasso/xml/saml-2.0/samlp2_requested_authn_context.c +++ b/lasso/xml/saml-2.0/samlp2_requested_authn_context.c @@ -67,12 +67,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2RequestedAuthnContext *node) -{ - node->AuthnContextClassRef = NULL; - node->AuthnContextDeclRef = NULL; -} static void class_init(LassoSamlp2RequestedAuthnContextClass *klass) @@ -101,7 +95,7 @@ lasso_samlp2_requested_authn_context_get_type() NULL, sizeof(LassoSamlp2RequestedAuthnContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_response.c b/lasso/xml/saml-2.0/samlp2_response.c index 7d9321bd..8cf59356 100644 --- a/lasso/xml/saml-2.0/samlp2_response.c +++ b/lasso/xml/saml-2.0/samlp2_response.c @@ -110,12 +110,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2Response *node) -{ - node->Assertion = NULL; - node->EncryptedAssertion = NULL; -} static void class_init(LassoSamlp2ResponseClass *klass) @@ -146,7 +140,7 @@ lasso_samlp2_response_get_type() NULL, sizeof(LassoSamlp2Response), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_scoping.c b/lasso/xml/saml-2.0/samlp2_scoping.c index 38919a7b..2966b622 100644 --- a/lasso/xml/saml-2.0/samlp2_scoping.c +++ b/lasso/xml/saml-2.0/samlp2_scoping.c @@ -65,12 +65,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2Scoping *node) -{ - node->IDPList = NULL; - node->RequesterID = NULL; -} static void class_init(LassoSamlp2ScopingClass *klass) @@ -99,7 +93,7 @@ lasso_samlp2_scoping_get_type() NULL, sizeof(LassoSamlp2Scoping), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_status.c b/lasso/xml/saml-2.0/samlp2_status.c index 2b68881b..71058f4f 100644 --- a/lasso/xml/saml-2.0/samlp2_status.c +++ b/lasso/xml/saml-2.0/samlp2_status.c @@ -65,13 +65,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2Status *node) -{ - node->StatusCode = NULL; - node->StatusMessage = NULL; - node->StatusDetail = NULL; -} static void class_init(LassoSamlp2StatusClass *klass) @@ -100,7 +93,7 @@ lasso_samlp2_status_get_type() NULL, sizeof(LassoSamlp2Status), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_status_code.c b/lasso/xml/saml-2.0/samlp2_status_code.c index 212d4fc9..ced8e042 100644 --- a/lasso/xml/saml-2.0/samlp2_status_code.c +++ b/lasso/xml/saml-2.0/samlp2_status_code.c @@ -62,12 +62,6 @@ static LassoNodeClass *parent_class = NULL; /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2StatusCode *node) -{ - node->StatusCode = NULL; - node->Value = NULL; -} static void class_init(LassoSamlp2StatusCodeClass *klass) @@ -96,7 +90,7 @@ lasso_samlp2_status_code_get_type() NULL, sizeof(LassoSamlp2StatusCode), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml-2.0/samlp2_status_response.c b/lasso/xml/saml-2.0/samlp2_status_response.c index 4d384d0a..31f398e5 100644 --- a/lasso/xml/saml-2.0/samlp2_status_response.c +++ b/lasso/xml/saml-2.0/samlp2_status_response.c @@ -152,18 +152,7 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) static void instance_init(LassoSamlp2StatusResponse *node) { - node->Issuer = NULL; - node->Extensions = NULL; - node->Status = NULL; - node->ID = NULL; - node->InResponseTo = NULL; - node->Version = NULL; - node->IssueInstant = NULL; - node->Destination = NULL; - node->Consent = NULL; node->sign_type = LASSO_SIGNATURE_TYPE_NONE; - node->private_key_file = NULL; - node->certificate_file = NULL; } static void diff --git a/lasso/xml/saml-2.0/samlp2_subject_query_abstract.c b/lasso/xml/saml-2.0/samlp2_subject_query_abstract.c index ef7eb1ce..f9c299b5 100644 --- a/lasso/xml/saml-2.0/samlp2_subject_query_abstract.c +++ b/lasso/xml/saml-2.0/samlp2_subject_query_abstract.c @@ -60,11 +60,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlp2SubjectQueryAbstract *node) -{ - node->Subject = NULL; -} static void class_init(LassoSamlp2SubjectQueryAbstractClass *klass) @@ -92,7 +87,7 @@ lasso_samlp2_subject_query_abstract_get_type() NULL, sizeof(LassoSamlp2SubjectQueryAbstract), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_advice.c b/lasso/xml/saml_advice.c index 21ff99b7..9d440ba2 100644 --- a/lasso/xml/saml_advice.c +++ b/lasso/xml/saml_advice.c @@ -65,13 +65,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAdvice *node) -{ -/* node->AssertionIDReference = NULL; - node->Assertion = NULL; */ - node->any = NULL; -} static void class_init(LassoSamlAdviceClass *klass) @@ -99,7 +92,7 @@ lasso_saml_advice_get_type() NULL, sizeof(LassoSamlAdvice), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_attribute.c b/lasso/xml/saml_attribute.c index e436c86a..4d2db9c6 100644 --- a/lasso/xml/saml_attribute.c +++ b/lasso/xml/saml_attribute.c @@ -79,13 +79,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAttribute *node) -{ - node->attributeName = NULL; - node->attributeNameSpace = NULL; - node->AttributeValue = NULL; -} static void class_init(LassoSamlAttributeClass *klass) @@ -113,7 +106,7 @@ lasso_saml_attribute_get_type() NULL, sizeof(LassoSamlAttribute), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_attribute_designator.c b/lasso/xml/saml_attribute_designator.c index 9479a78a..dc2fa591 100644 --- a/lasso/xml/saml_attribute_designator.c +++ b/lasso/xml/saml_attribute_designator.c @@ -51,12 +51,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAttributeDesignator *node) -{ - node->AttributeName = NULL; - node->AttributeNamespace = NULL; -} static void class_init(LassoSamlAttributeDesignatorClass *klass) @@ -84,7 +78,7 @@ lasso_saml_attribute_designator_get_type() NULL, sizeof(LassoSamlAttributeDesignator), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_attribute_statement.c b/lasso/xml/saml_attribute_statement.c index cd856ed6..e9d973ed 100644 --- a/lasso/xml/saml_attribute_statement.c +++ b/lasso/xml/saml_attribute_statement.c @@ -54,11 +54,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAttributeStatement *node) -{ - node->Attribute = NULL; -} static void class_init(LassoSamlAttributeStatementClass *klass) @@ -86,7 +81,7 @@ lasso_saml_attribute_statement_get_type() NULL, sizeof(LassoSamlAttributeStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_audience_restriction_condition.c b/lasso/xml/saml_audience_restriction_condition.c index 0e4f0334..4b567ca3 100644 --- a/lasso/xml/saml_audience_restriction_condition.c +++ b/lasso/xml/saml_audience_restriction_condition.c @@ -56,11 +56,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAudienceRestrictionCondition *node) -{ - node->Audience = NULL; -} static void class_init(LassoSamlAudienceRestrictionConditionClass *klass) @@ -88,7 +83,7 @@ lasso_saml_audience_restriction_condition_get_type() NULL, sizeof(LassoSamlAudienceRestrictionCondition), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_authentication_statement.c b/lasso/xml/saml_authentication_statement.c index a39c9758..c24012f3 100644 --- a/lasso/xml/saml_authentication_statement.c +++ b/lasso/xml/saml_authentication_statement.c @@ -69,14 +69,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAuthenticationStatement *node) -{ - node->SubjectLocality = NULL; - node->AuthorityBinding = NULL; - node->AuthenticationMethod = NULL; - node->AuthenticationInstant = NULL; -} static void class_init(LassoSamlAuthenticationStatementClass *klass) @@ -104,7 +96,7 @@ lasso_saml_authentication_statement_get_type() NULL, sizeof(LassoSamlAuthenticationStatement), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_authority_binding.c b/lasso/xml/saml_authority_binding.c index e8daeab1..5561932a 100644 --- a/lasso/xml/saml_authority_binding.c +++ b/lasso/xml/saml_authority_binding.c @@ -60,13 +60,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlAuthorityBinding *node) -{ - node->AuthorityKind = NULL; - node->Location = NULL; - node->Binding = NULL; -} static void class_init(LassoSamlAuthorityBindingClass *klass) @@ -94,7 +87,7 @@ lasso_saml_authority_binding_get_type() NULL, sizeof(LassoSamlAuthorityBinding), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_conditions.c b/lasso/xml/saml_conditions.c index b884593c..765d1604 100644 --- a/lasso/xml/saml_conditions.c +++ b/lasso/xml/saml_conditions.c @@ -63,14 +63,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlConditions *node) -{ - node->Condition = NULL; - node->AudienceRestrictionCondition = NULL; - node->NotBefore = NULL; - node->NotOnOrAfter = NULL; -} static void class_init(LassoSamlConditionsClass *klass) @@ -98,7 +90,7 @@ lasso_saml_conditions_get_type() NULL, sizeof(LassoSamlConditions), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_subject.c b/lasso/xml/saml_subject.c index 5d82ad29..b98079de 100644 --- a/lasso/xml/saml_subject.c +++ b/lasso/xml/saml_subject.c @@ -65,13 +65,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlSubject *node) -{ - node->NameIdentifier = NULL; - node->EncryptedNameIdentifier = NULL; - node->SubjectConfirmation = NULL; -} static void class_init(LassoSamlSubjectClass *klass) @@ -99,7 +92,7 @@ lasso_saml_subject_get_type() NULL, sizeof(LassoSamlSubject), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_subject_confirmation.c b/lasso/xml/saml_subject_confirmation.c index 120bcdfb..1030536a 100644 --- a/lasso/xml/saml_subject_confirmation.c +++ b/lasso/xml/saml_subject_confirmation.c @@ -65,13 +65,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlSubjectConfirmation *node) -{ - node->ConfirmationMethod = NULL; - node->SubjectConfirmationData = NULL; - node->KeyInfo = NULL; -} static void class_init(LassoSamlSubjectConfirmationClass *klass) @@ -99,7 +92,7 @@ lasso_saml_subject_confirmation_get_type() NULL, sizeof(LassoSamlSubjectConfirmation), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_subject_locality.c b/lasso/xml/saml_subject_locality.c index 6c38c0fb..d08c5bad 100644 --- a/lasso/xml/saml_subject_locality.c +++ b/lasso/xml/saml_subject_locality.c @@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlSubjectLocality *node) -{ - node->IPAddress = NULL; - node->DNSAddress = NULL; -} static void class_init(LassoSamlSubjectLocalityClass *klass) @@ -88,7 +82,7 @@ lasso_saml_subject_locality_get_type() NULL, sizeof(LassoSamlSubjectLocality), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/saml_subject_statement_abstract.c b/lasso/xml/saml_subject_statement_abstract.c index d691768a..e294e5a4 100644 --- a/lasso/xml/saml_subject_statement_abstract.c +++ b/lasso/xml/saml_subject_statement_abstract.c @@ -59,11 +59,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlSubjectStatementAbstract *node) -{ - node->Subject = NULL; -} static void class_init(LassoSamlSubjectStatementAbstractClass *klass) @@ -91,7 +86,7 @@ lasso_saml_subject_statement_abstract_get_type() NULL, sizeof(LassoSamlSubjectStatementAbstract), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/samlp_request.c b/lasso/xml/samlp_request.c index 308fd5a6..16c457a6 100644 --- a/lasso/xml/samlp_request.c +++ b/lasso/xml/samlp_request.c @@ -67,11 +67,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlpRequest *node) -{ - node->AssertionArtifact = NULL; -} static void class_init(LassoSamlpRequestClass *klass) @@ -99,7 +94,7 @@ lasso_samlp_request_get_type() NULL, sizeof(LassoSamlpRequest), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/samlp_request_abstract.c b/lasso/xml/samlp_request_abstract.c index f3266fe7..c17c00c3 100644 --- a/lasso/xml/samlp_request_abstract.c +++ b/lasso/xml/samlp_request_abstract.c @@ -113,11 +113,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) static void instance_init(LassoSamlpRequestAbstract *node) { - node->RespondWith = NULL; - node->RequestID = NULL; - node->MajorVersion = 0; - node->MinorVersion = 0; - node->IssueInstant = NULL; node->sign_type = LASSO_SIGNATURE_TYPE_NONE; } diff --git a/lasso/xml/samlp_response.c b/lasso/xml/samlp_response.c index bf6f5601..a7fccdee 100644 --- a/lasso/xml/samlp_response.c +++ b/lasso/xml/samlp_response.c @@ -106,12 +106,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlpResponse *node) -{ - node->Assertion = NULL; - node->Status = NULL; -} static void class_init(LassoSamlpResponseClass *klass) @@ -142,7 +136,7 @@ lasso_samlp_response_get_type() NULL, sizeof(LassoSamlpResponse), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/samlp_response_abstract.c b/lasso/xml/samlp_response_abstract.c index 3c3a62a2..e5ba1b74 100644 --- a/lasso/xml/samlp_response_abstract.c +++ b/lasso/xml/samlp_response_abstract.c @@ -117,12 +117,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) static void instance_init(LassoSamlpResponseAbstract *node) { - node->ResponseID = NULL; - node->MajorVersion = 0; - node->MinorVersion = 0; - node->IssueInstant = NULL; - node->InResponseTo = NULL; - node->Recipient = NULL; node->sign_type = LASSO_SIGNATURE_TYPE_NONE; } diff --git a/lasso/xml/samlp_status.c b/lasso/xml/samlp_status.c index b4c67015..583c8863 100644 --- a/lasso/xml/samlp_status.c +++ b/lasso/xml/samlp_status.c @@ -102,12 +102,6 @@ init_from_query(LassoNode *node, char **query_fields) /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSamlpStatus *node) -{ - node->StatusCode = NULL; - node->StatusMessage = NULL; -} static void class_init(LassoSamlpStatusClass *klass) @@ -137,7 +131,7 @@ lasso_samlp_status_get_type() NULL, sizeof(LassoSamlpStatus), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_consent.c b/lasso/xml/soap_binding_consent.c index 0f954d7c..69a57ba2 100644 --- a/lasso/xml/soap_binding_consent.c +++ b/lasso/xml/soap_binding_consent.c @@ -65,15 +65,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingConsent *node) -{ - node->uri = NULL; - node->timestamp = NULL; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingConsentClass *klass) @@ -101,7 +92,7 @@ lasso_soap_binding_consent_get_type() NULL, sizeof(LassoSoapBindingConsent), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_correlation.c b/lasso/xml/soap_binding_correlation.c index 9e9ffee2..8d4ba141 100644 --- a/lasso/xml/soap_binding_correlation.c +++ b/lasso/xml/soap_binding_correlation.c @@ -65,16 +65,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingCorrelation *node) -{ - node->messageID = NULL; - node->refToMessageID = NULL; - node->timestamp = NULL; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingCorrelationClass *klass) @@ -102,7 +92,7 @@ lasso_soap_binding_correlation_get_type() NULL, sizeof(LassoSoapBindingCorrelation), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_ext_credential.c b/lasso/xml/soap_binding_ext_credential.c index 0f524cc5..5ee0e356 100644 --- a/lasso/xml/soap_binding_ext_credential.c +++ b/lasso/xml/soap_binding_ext_credential.c @@ -61,12 +61,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingExtCredential *node) -{ - node->any = NULL; - node->notOnOrAfter = NULL; -} static void class_init(LassoSoapBindingExtCredentialClass *klass) @@ -94,7 +88,7 @@ lasso_soap_binding_ext_credential_get_type() NULL, sizeof(LassoSoapBindingExtCredential), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_ext_credentials_context.c b/lasso/xml/soap_binding_ext_credentials_context.c index 3be492d9..7ff24c37 100644 --- a/lasso/xml/soap_binding_ext_credentials_context.c +++ b/lasso/xml/soap_binding_ext_credentials_context.c @@ -68,15 +68,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingExtCredentialsContext *node) -{ - node->RequestAuthnContext = NULL; - node->SecurityMechID = NULL; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingExtCredentialsContextClass *klass) @@ -104,7 +95,7 @@ lasso_soap_binding_ext_credentials_context_get_type() NULL, sizeof(LassoSoapBindingExtCredentialsContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_ext_service_instance_update.c b/lasso/xml/soap_binding_ext_service_instance_update.c index 05121b5a..1eb5870a 100644 --- a/lasso/xml/soap_binding_ext_service_instance_update.c +++ b/lasso/xml/soap_binding_ext_service_instance_update.c @@ -77,16 +77,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingExtServiceInstanceUpdate *node) -{ - node->SecurityMechID = NULL; - node->Credential = NULL; - node->Endpoint = NULL; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingExtServiceInstanceUpdateClass *klass) @@ -114,7 +104,7 @@ lasso_soap_binding_ext_service_instance_update_get_type() NULL, sizeof(LassoSoapBindingExtServiceInstanceUpdate), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_ext_timeout.c b/lasso/xml/soap_binding_ext_timeout.c index b244aab1..9881e67d 100644 --- a/lasso/xml/soap_binding_ext_timeout.c +++ b/lasso/xml/soap_binding_ext_timeout.c @@ -62,14 +62,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingExtTimeout *node) -{ - node->maxProcessingTime = 0; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingExtTimeoutClass *klass) @@ -97,7 +89,7 @@ lasso_soap_binding_ext_timeout_get_type() NULL, sizeof(LassoSoapBindingExtTimeout), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_processing_context.c b/lasso/xml/soap_binding_processing_context.c index b26b3a9c..05e9139a 100644 --- a/lasso/xml/soap_binding_processing_context.c +++ b/lasso/xml/soap_binding_processing_context.c @@ -64,14 +64,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingProcessingContext *node) -{ - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; - node->content = NULL; -} static void class_init(LassoSoapBindingProcessingContextClass *klass) @@ -99,7 +91,7 @@ lasso_soap_binding_processing_context_get_type() NULL, sizeof(LassoSoapBindingProcessingContext), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_provider.c b/lasso/xml/soap_binding_provider.c index 009c9a7a..dd4368e0 100644 --- a/lasso/xml/soap_binding_provider.c +++ b/lasso/xml/soap_binding_provider.c @@ -64,15 +64,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingProvider *node) -{ - node->providerID = NULL; - node->affiliationID = NULL; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingProviderClass *klass) @@ -100,7 +91,7 @@ lasso_soap_binding_provider_get_type() NULL, sizeof(LassoSoapBindingProvider), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_binding_usage_directive.c b/lasso/xml/soap_binding_usage_directive.c index 21f7e03e..753f63f6 100644 --- a/lasso/xml/soap_binding_usage_directive.c +++ b/lasso/xml/soap_binding_usage_directive.c @@ -66,15 +66,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapBindingUsageDirective *node) -{ - node->other = NULL; - node->ref = 0; - node->id = NULL; - node->mustUnderstand = NULL; - node->actor = NULL; -} static void class_init(LassoSoapBindingUsageDirectiveClass *klass) @@ -102,7 +93,7 @@ lasso_soap_binding_usage_directive_get_type() NULL, sizeof(LassoSoapBindingUsageDirective), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_body.c b/lasso/xml/soap_body.c index d5542c3a..26eb4931 100644 --- a/lasso/xml/soap_body.c +++ b/lasso/xml/soap_body.c @@ -65,12 +65,6 @@ static struct XmlSnippet schema_snippets[] = { static xmlNode* get_xmlNode(LassoNode *node, gboolean lasso_dump); -static void -instance_init(LassoSoapBody *node) -{ - node->any = NULL; - node->Id = NULL; -} static LassoNodeClass *parent_class = NULL; @@ -118,7 +112,7 @@ lasso_soap_body_get_type() NULL, sizeof(LassoSoapBody), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_detail.c b/lasso/xml/soap_detail.c index 0ef40da8..1f6e7924 100644 --- a/lasso/xml/soap_detail.c +++ b/lasso/xml/soap_detail.c @@ -64,11 +64,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapDetail *node) -{ - node->any = NULL; -} static void class_init(LassoSoapDetailClass *klass) @@ -96,7 +91,7 @@ lasso_soap_detail_get_type() NULL, sizeof(LassoSoapDetail), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_envelope.c b/lasso/xml/soap_envelope.c index ae0e80f8..4ca0e6e0 100644 --- a/lasso/xml/soap_envelope.c +++ b/lasso/xml/soap_envelope.c @@ -46,12 +46,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapEnvelope *node) -{ - node->Body = NULL; - node->Header = NULL; -} static void class_init(LassoSoapEnvelopeClass *klass) @@ -79,7 +73,7 @@ lasso_soap_envelope_get_type() NULL, sizeof(LassoSoapEnvelope), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_fault.c b/lasso/xml/soap_fault.c index e913a67e..69936804 100644 --- a/lasso/xml/soap_fault.c +++ b/lasso/xml/soap_fault.c @@ -66,14 +66,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapFault *node) -{ - node->faultcode = NULL; - node->faultstring = NULL; - node->faultactor = NULL; - node->Detail = NULL; -} static void class_init(LassoSoapFaultClass *klass) @@ -101,7 +93,7 @@ lasso_soap_fault_get_type() NULL, sizeof(LassoSoapFault), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/soap_header.c b/lasso/xml/soap_header.c index 77378f7c..1e1fd3b5 100644 --- a/lasso/xml/soap_header.c +++ b/lasso/xml/soap_header.c @@ -44,11 +44,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoSoapHeader *node) -{ - node->Other = NULL; -} static void class_init(LassoSoapHeaderClass *klass) @@ -76,7 +71,7 @@ lasso_soap_header_get_type() NULL, sizeof(LassoSoapHeader), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/utility_status.c b/lasso/xml/utility_status.c index 0e201a66..2336c2f5 100644 --- a/lasso/xml/utility_status.c +++ b/lasso/xml/utility_status.c @@ -68,14 +68,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoUtilityStatus *node) -{ - node->Status = NULL; - node->code = NULL; - node->ref = NULL; - node->comment = NULL; -} static void class_init(LassoUtilityStatusClass *klass) @@ -103,7 +95,7 @@ lasso_utility_status_get_type() NULL, sizeof(LassoUtilityStatus), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; diff --git a/lasso/xml/ws/wsa_attributed_any.c b/lasso/xml/ws/wsa_attributed_any.c index 838e3e30..294912c5 100644 --- a/lasso/xml/ws/wsa_attributed_any.c +++ b/lasso/xml/ws/wsa_attributed_any.c @@ -59,7 +59,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrAttributedAny *node) { - node->any = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_attributed_qname.c b/lasso/xml/ws/wsa_attributed_qname.c index 5ff5d82a..3f5b911f 100644 --- a/lasso/xml/ws/wsa_attributed_qname.c +++ b/lasso/xml/ws/wsa_attributed_qname.c @@ -60,7 +60,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrAttributedQName *node) { - node->content = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_attributed_unsigned_long.c b/lasso/xml/ws/wsa_attributed_unsigned_long.c index 7c771526..156a5215 100644 --- a/lasso/xml/ws/wsa_attributed_unsigned_long.c +++ b/lasso/xml/ws/wsa_attributed_unsigned_long.c @@ -60,7 +60,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrAttributedUnsignedLong *node) { - node->content = 0; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_attributed_uri.c b/lasso/xml/ws/wsa_attributed_uri.c index 7ba34bdc..73770fda 100644 --- a/lasso/xml/ws/wsa_attributed_uri.c +++ b/lasso/xml/ws/wsa_attributed_uri.c @@ -60,7 +60,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrAttributedURI *node) { - node->content = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_endpoint_reference.c b/lasso/xml/ws/wsa_endpoint_reference.c index 0605897a..c09e67ac 100644 --- a/lasso/xml/ws/wsa_endpoint_reference.c +++ b/lasso/xml/ws/wsa_endpoint_reference.c @@ -71,10 +71,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrEndpointReference *node) { - node->Address = NULL; - node->ReferenceParameters = NULL; - node->Metadata = NULL; - node->any = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_metadata.c b/lasso/xml/ws/wsa_metadata.c index 7bd00efa..54efb525 100644 --- a/lasso/xml/ws/wsa_metadata.c +++ b/lasso/xml/ws/wsa_metadata.c @@ -59,7 +59,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrMetadata *node) { - node->any = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_problem_action.c b/lasso/xml/ws/wsa_problem_action.c index d6d51171..1957e408 100644 --- a/lasso/xml/ws/wsa_problem_action.c +++ b/lasso/xml/ws/wsa_problem_action.c @@ -63,8 +63,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrProblemAction *node) { - node->Action = NULL; - node->SoapAction = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_reference_parameters.c b/lasso/xml/ws/wsa_reference_parameters.c index de6be1d9..279e0977 100644 --- a/lasso/xml/ws/wsa_reference_parameters.c +++ b/lasso/xml/ws/wsa_reference_parameters.c @@ -59,7 +59,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrReferenceParameters *node) { - node->any = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsa_relates_to.c b/lasso/xml/ws/wsa_relates_to.c index 122f25f6..651a3871 100644 --- a/lasso/xml/ws/wsa_relates_to.c +++ b/lasso/xml/ws/wsa_relates_to.c @@ -64,8 +64,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsAddrRelatesTo *node) { - node->content = NULL; - node->RelationshipType = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsse_embedded.c b/lasso/xml/ws/wsse_embedded.c index 923c36a5..c8efcb58 100644 --- a/lasso/xml/ws/wsse_embedded.c +++ b/lasso/xml/ws/wsse_embedded.c @@ -64,7 +64,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsSec1Embedded *node) { - node->ValueType = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsse_reference.c b/lasso/xml/ws/wsse_reference.c index 7924ddfd..21a0dfdd 100644 --- a/lasso/xml/ws/wsse_reference.c +++ b/lasso/xml/ws/wsse_reference.c @@ -64,8 +64,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsSec1Reference *node) { - node->URI = NULL; - node->ValueType = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsse_security_header.c b/lasso/xml/ws/wsse_security_header.c index 0b575c70..93bb5e08 100644 --- a/lasso/xml/ws/wsse_security_header.c +++ b/lasso/xml/ws/wsse_security_header.c @@ -68,7 +68,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsSec1SecurityHeader *node) { - node->any = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsse_security_token_reference.c b/lasso/xml/ws/wsse_security_token_reference.c index 4776a2dd..51d7201b 100644 --- a/lasso/xml/ws/wsse_security_token_reference.c +++ b/lasso/xml/ws/wsse_security_token_reference.c @@ -66,8 +66,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsSec1SecurityTokenReference *node) { - node->Id = NULL; - node->Usage = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsse_username_token.c b/lasso/xml/ws/wsse_username_token.c index fa3ddc03..966b389a 100644 --- a/lasso/xml/ws/wsse_username_token.c +++ b/lasso/xml/ws/wsse_username_token.c @@ -67,8 +67,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsSec1UsernameToken *node) { - node->Username = NULL; - node->Id = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/ws/wsu_timestamp.c b/lasso/xml/ws/wsu_timestamp.c index d7de277a..62bdb60f 100644 --- a/lasso/xml/ws/wsu_timestamp.c +++ b/lasso/xml/ws/wsu_timestamp.c @@ -72,9 +72,6 @@ static LassoNodeClass *parent_class = NULL; static void instance_init(LassoWsUtil1Timestamp *node) { - node->Created = NULL; - node->Expires = NULL; - node->Id = NULL; node->attributes = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free); } diff --git a/lasso/xml/wsse_security.c b/lasso/xml/wsse_security.c index bb2d9ab5..41d8d168 100644 --- a/lasso/xml/wsse_security.c +++ b/lasso/xml/wsse_security.c @@ -41,11 +41,6 @@ static struct XmlSnippet schema_snippets[] = { /* instance and class init functions */ /*****************************************************************************/ -static void -instance_init(LassoWsseSecurity *node) -{ - node->any = NULL; -} static void class_init(LassoWsseSecurityClass *klass) @@ -73,7 +68,7 @@ lasso_wsse_security_get_type() NULL, sizeof(LassoWsseSecurity), 0, - (GInstanceInitFunc) instance_init, + NULL, NULL }; |