Create Attribute with value without value element/tag

How to create attribute with value inside attribute tag itself with out value tag

This is the default attribute value
saml:AttributeStatement
<saml:Attribute Name=“firstName”>
saml:AttributeValueRaja</saml:AttributeValue>
</saml:Attribute>
</saml:AttributeStatement>

Need to create like this “Raja” value is present in side attribute element not as attribute value
saml:AttributeStatement
<saml:Attribute Name=“firstName”>Raja</saml:Attribute>
</saml:AttributeStatement>

This isn’t possible. The saml:AttributeValue is required as defined in the SAML specification. Also, any SAML offering complying with the SAML specification would reject this.