LassoSaml2AttributeStatement

LassoSaml2AttributeStatement — <saml2:AttributeStatement>

Synopsis

                    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

LassoSaml2AttributeStatement

typedef struct {
	LassoSaml2StatementAbstract parent;

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

lasso_saml2_attribute_statement_new ()

LassoNode*          lasso_saml2_attribute_statement_new (void);

Creates a new LassoSaml2AttributeStatement object.

Returns :

a newly created LassoSaml2AttributeStatement object