LassoSaml2Action

LassoSaml2Action — <saml2:Action>

Synopsis

                    LassoSaml2Action;
LassoNode*          lasso_saml2_action_new              (void);
LassoNode*          lasso_saml2_action_new_with_string  (char *content);

Description

Figure 42. Schema fragment for saml2:Action


<complexType name="ActionType">
  <simpleContent>
    <extension base="string">
      <attribute name="Namespace" type="anyURI" use="required"/>
    </extension>
  </simpleContent>
</complexType>


Details

LassoSaml2Action

typedef struct {
	LassoNode parent;

	/* elements */
	char *content;
	/* attributes */
	char *Namespace;
} LassoSaml2Action;

lasso_saml2_action_new ()

LassoNode*          lasso_saml2_action_new              (void);

Creates a new LassoSaml2Action object.

Returns :

a newly created LassoSaml2Action object

lasso_saml2_action_new_with_string ()

LassoNode*          lasso_saml2_action_new_with_string  (char *content);

Creates a new LassoSaml2Action object and initializes it with content.

content :

content of the new element

Returns :

a newly created LassoSaml2Action object