LassoSaml2AttributeStatement

LassoSaml2AttributeStatement — <saml2:AttributeStatement>

Synopsis

struct              LassoSaml2AttributeStatement;
LassoNode *         lasso_saml2_attribute_statement_new (void);

Description

Figure 45. Schema fragment for saml2:AttributeStatement


<complexType name="AttributeStatementType">
  <complexContent>
    <extension base="saml:StatementAbstractType">
      <choice maxOccurs="unbounded">
        <element ref="saml:Attribute"/>
        <element ref="saml:EncryptedAttribute"/>
      </choice>
    </extension>
  </complexContent>
</complexType>


Details

struct LassoSaml2AttributeStatement

struct LassoSaml2AttributeStatement {
	LassoSaml2StatementAbstract parent;

	/* elements */
	GList *Attribute; /* of LassoSaml2Attribute */
	GList *EncryptedAttribute; /* of LassoSaml2EncryptedElement */
};

lasso_saml2_attribute_statement_new ()

LassoNode *         lasso_saml2_attribute_statement_new (void);

Creates a new LassoSaml2AttributeStatement object.

Returns :

a newly created LassoSaml2AttributeStatement object