Class AttributeTemplate


  • public class AttributeTemplate
    extends Object
    An attribute template is a template of a SAML attribute, i.e., it represents the name, friendly name and name format but not the value of the attribute.

    A template may be useful when defining attribute sets and/or attribute release policies.

    Author:
    Martin Lindström (martin.lindstrom@litsec.se)
    • Constructor Detail

      • AttributeTemplate

        public AttributeTemplate​(String name,
                                 String friendlyName)
        Creates an attribute template with the given name and friendly name, the default name format urn:oasis:names:tc:SAML:2.0:attrname-format:uri (Attribute.URI_REFERENCE) and not multi-valued.
        Parameters:
        name - the attribute name
        friendlyName - the attribute friendly name (optional)
      • AttributeTemplate

        public AttributeTemplate​(String name,
                                 String friendlyName,
                                 String nameFormat)
        Creates an attribute template with the given name, friendly name and name format.
        Parameters:
        name - the attribute name
        friendlyName - the attribute friendly name
        nameFormat - the name format
    • Method Detail

      • getName

        public String getName()
        Get the name of this attribute template.
        Returns:
        the name of this attribute template
      • getFriendlyName

        public String getFriendlyName()
        Get the friendly name of this attribute template.
        Returns:
        the friendly name of this attribute template
      • getNameFormat

        public String getNameFormat()
        Get the name format of this attribute template.
        Returns:
        the name format of this attribute template