Class AttributeTemplate
- java.lang.Object
-
- se.litsec.opensaml.saml2.attribute.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 Summary
Constructors Constructor Description AttributeTemplate(String name, String friendlyName)
Creates an attribute template with the given name and friendly name, the default name formaturn:oasis:names:tc:SAML:2.0:attrname-format:uri
(Attribute.URI_REFERENCE
) and not multi-valued.AttributeTemplate(String name, String friendlyName, String nameFormat)
Creates an attribute template with the given name, friendly name and name format.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeBuilder
createBuilder()
Based on the attribute template anAttributeBuilder
object is created.String
getFriendlyName()
Get the friendly name of this attribute template.String
getName()
Get the name of this attribute template.String
getNameFormat()
Get the name format of this attribute template.
-
-
-
Constructor Detail
-
AttributeTemplate
public AttributeTemplate(String name, String friendlyName)
Creates an attribute template with the given name and friendly name, the default name formaturn:oasis:names:tc:SAML:2.0:attrname-format:uri
(Attribute.URI_REFERENCE
) and not multi-valued.- Parameters:
name
- the attribute namefriendlyName
- the attribute friendly name (optional)
-
-
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
-
createBuilder
public AttributeBuilder createBuilder()
Based on the attribute template anAttributeBuilder
object is created.- Returns:
- a builder
-
-