Class AbstractEntityDescriptorBuilder<T extends AbstractSAMLObjectBuilder<EntityDescriptor>>
- java.lang.Object
-
- se.litsec.opensaml.core.AbstractSAMLObjectBuilder<EntityDescriptor>
-
- se.litsec.opensaml.saml2.metadata.build.AbstractEntityDescriptorBuilder<T>
-
- Type Parameters:
T
- the concrete builder type
- All Implemented Interfaces:
SAMLObjectBuilder<EntityDescriptor>
- Direct Known Subclasses:
IdpEntityDescriptorBuilder
,SpEntityDescriptorBuilder
public abstract class AbstractEntityDescriptorBuilder<T extends AbstractSAMLObjectBuilder<EntityDescriptor>> extends AbstractSAMLObjectBuilder<EntityDescriptor>
Abstract base builder for creatingEntityDescriptor
objects using the builder pattern, and optionally a template object.When a template object is used, the builder is created using the
AbstractEntityDescriptorBuilder(InputStream)
orAbstractEntityDescriptorBuilder(EntityDescriptor)
constructors. The user may later change, or add, any of the elements and attributes of the template object using the assignment methods.Note that no Signature will be included.
- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Field Summary
Fields Modifier and Type Field Description static String
ENTITY_CATEGORY_ATTRIBUTE_NAME
The attribute name for the entity category attribute stored as an attribute in the entity attributes extension.static AttributeTemplate
ENTITY_CATEGORY_TEMPLATE
The attribute template for the entity category attribute stored as an attribute in the entity attributes extension.
-
Constructor Summary
Constructors Constructor Description AbstractEntityDescriptorBuilder()
Constructor setting up the builder with no template.AbstractEntityDescriptorBuilder(InputStream resource)
Constructor setting up the builder with a templateEntityDescriptor
that is read from a resource.AbstractEntityDescriptorBuilder(EntityDescriptor template)
Constructor setting up the builder with a templateEntityDescriptor
.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description T
cacheDuration(Long cacheDuration)
Assigns the cacheDuration attribute for theEntityDescriptor
.T
contactPersons(List<ContactPerson> contactPersons)
Assigns theContactPerson
elements to the entity descriptor.T
contactPersons(ContactPerson... contactPersons)
T
digestMethods(boolean addToRole, List<DigestMethod> digestMethods)
Adds a ordered list ofalg:DigestMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0".T
digestMethods(boolean addToRole, DigestMethod... digestMethods)
T
entityAttributesExtension(List<Attribute> attributes)
Adds attributes to themdattr:EntityAttributes
element that is part of the metadata extension element.T
entityAttributesExtension(Attribute... attributes)
T
entityCategories(String... entityCategories)
T
entityCategories(List<String> entityCategories)
Adds a set of entity categories to the entity category attribute (http://macedir.org/entity-category
) that is part of themdattr:EntityAttributes
element that is part of the metadata extension element.T
entityID(String entityID)
Assigns the entityID for theEntityDescriptor
.protected Class<EntityDescriptor>
getObjectType()
Returns the object type.protected abstract T
getThis()
In order for us to be able to make chaining calls we need to return the concrete type of the builder.T
id(String id)
Assigns the ID attribute for theEntityDescriptor
.T
keyDescriptors(List<KeyDescriptor> keyDescriptors)
Adds the key descriptor elements.T
keyDescriptors(KeyDescriptor... keyDescriptors)
protected abstract boolean
matchingSSODescriptorType(EntityDescriptor descriptor)
Checks that the SSO descriptor of the suppliedEntityDescriptor
is of the correct type given the factory bean type.T
nameIDFormats(String... nameIDFormats)
T
nameIDFormats(List<String> nameIDFormats)
Assigns themd:NameIDFormat
elements.T
organization(Organization organization)
Assigns theOrganization
element to the entity descriptor.T
signingMethods(boolean addToRole, List<SigningMethod> signingMethods)
Adds a ordered list ofalg:SigningMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0".T
signingMethods(boolean addToRole, SigningMethod... signingMethods)
T
singleLogoutServices(List<SingleLogoutService> singleLogoutServices)
Addsmd:SingleLogoutService
elements to theSSODescriptor
.T
singleLogoutServices(SingleLogoutService... singleLogoutServices)
protected abstract SSODescriptor
ssoDescriptor()
Returns the SSO role descriptor of the template entity descriptor.T
uiInfoExtension(UIInfo uiInfo)
Assigns themdui:UIInfo
element as an extension to the role descriptor.protected <E extends XMLObject>
voidupdateExtensions(Extensions extensions, List<E> elements, QName elementName)
Support method that updates anExtensions
element with the supplied elements.T
validUntil(Instant time)
Assigns the valid until time.-
Methods inherited from class se.litsec.opensaml.core.AbstractSAMLObjectBuilder
build, getDefaultElementName, object
-
-
-
-
Field Detail
-
ENTITY_CATEGORY_ATTRIBUTE_NAME
public static final String ENTITY_CATEGORY_ATTRIBUTE_NAME
The attribute name for the entity category attribute stored as an attribute in the entity attributes extension.- See Also:
- Constant Field Values
-
ENTITY_CATEGORY_TEMPLATE
public static final AttributeTemplate ENTITY_CATEGORY_TEMPLATE
The attribute template for the entity category attribute stored as an attribute in the entity attributes extension.
-
-
Constructor Detail
-
AbstractEntityDescriptorBuilder
public AbstractEntityDescriptorBuilder()
Constructor setting up the builder with no template. This means that the entireEntityDescriptor
object is created from data assigned using the builder.
-
AbstractEntityDescriptorBuilder
public AbstractEntityDescriptorBuilder(InputStream resource) throws XMLParserException, UnmarshallingException, IOException
Constructor setting up the builder with a templateEntityDescriptor
that is read from a resource. Users of the bean may now change, add or delete, the elements and attributes of the template object using the assignment methods of the builder.- Parameters:
resource
- the template resource- Throws:
IOException
- if the resource can not be readUnmarshallingException
- for unmarshalling errorsXMLParserException
- for XML parsing errors
-
AbstractEntityDescriptorBuilder
public AbstractEntityDescriptorBuilder(EntityDescriptor template) throws UnmarshallingException, MarshallingException
Constructor setting up the builder with a templateEntityDescriptor
. Users of the bean may now change, add or delete, the elements and attributes of the template object using the assignment methods of the builder.- Parameters:
template
- the template- Throws:
UnmarshallingException
- for unmarshalling errorsMarshallingException
- for marshalling errors
-
-
Method Detail
-
getObjectType
protected Class<EntityDescriptor> getObjectType()
Returns the object type.- Specified by:
getObjectType
in classAbstractSAMLObjectBuilder<EntityDescriptor>
- Returns:
- the object type
-
getThis
protected abstract T getThis()
In order for us to be able to make chaining calls we need to return the concrete type of the builder.- Returns:
- the concrete type of the builder
-
ssoDescriptor
protected abstract SSODescriptor ssoDescriptor()
Returns the SSO role descriptor of the template entity descriptor. If no role descriptor is present, the method creates such an object.- Returns:
- the role descriptor
-
matchingSSODescriptorType
protected abstract boolean matchingSSODescriptorType(EntityDescriptor descriptor)
Checks that the SSO descriptor of the suppliedEntityDescriptor
is of the correct type given the factory bean type.An entity descriptor that does not yet have an SSODescriptor element will also be regarded as a matching type.
- Parameters:
descriptor
- the descriptor to check- Returns:
true
if the type is OK, andfalse
otherwise
-
entityID
public T entityID(String entityID)
Assigns the entityID for theEntityDescriptor
.- Parameters:
entityID
- the entityID- Returns:
- the builder
-
id
public T id(String id)
Assigns the ID attribute for theEntityDescriptor
.- Parameters:
id
- the ID- Returns:
- the builder
-
cacheDuration
public T cacheDuration(Long cacheDuration)
Assigns the cacheDuration attribute for theEntityDescriptor
.- Parameters:
cacheDuration
- the cache duration (in milliseconds)- Returns:
- the builder
-
validUntil
public T validUntil(Instant time)
Assigns the valid until time.- Parameters:
time
- valid until- Returns:
- the builder
-
entityAttributesExtension
public T entityAttributesExtension(List<Attribute> attributes)
Adds attributes to themdattr:EntityAttributes
element that is part of the metadata extension element.- Parameters:
attributes
- a list of attributes- Returns:
- the builder
- See Also:
entityCategories(String...)
-
entityAttributesExtension
public T entityAttributesExtension(Attribute... attributes)
- Parameters:
attributes
- attributes to add- Returns:
- the builder
- See Also:
entityAttributesExtension(List)
-
entityCategories
public T entityCategories(List<String> entityCategories)
Adds a set of entity categories to the entity category attribute (http://macedir.org/entity-category
) that is part of themdattr:EntityAttributes
element that is part of the metadata extension element.The method does not update any of the other attributes that may exist in the entity attributes extension.
- Parameters:
entityCategories
- the entity category values that should be added- Returns:
- the builder
- See Also:
entityAttributesExtension(List)
-
entityCategories
public T entityCategories(String... entityCategories)
- Parameters:
entityCategories
- the entity category values that should be added- Returns:
- the builder
- See Also:
entityCategories(List)
-
uiInfoExtension
public T uiInfoExtension(UIInfo uiInfo)
Assigns themdui:UIInfo
element as an extension to the role descriptor.If
null
is supplied, the extension will be removed from the template entity descriptor (if present).- Parameters:
uiInfo
- theUIInfo
element (will be cloned before assignment)- Returns:
- the builder
-
keyDescriptors
public T keyDescriptors(List<KeyDescriptor> keyDescriptors)
Adds the key descriptor elements.- Parameters:
keyDescriptors
- the key descriptors- Returns:
- the builder
-
keyDescriptors
public T keyDescriptors(KeyDescriptor... keyDescriptors)
- Parameters:
keyDescriptors
- the key descriptors- Returns:
- the builder
- See Also:
keyDescriptors(List)
-
signingMethods
public T signingMethods(boolean addToRole, List<SigningMethod> signingMethods)
Adds a ordered list ofalg:SigningMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0".- Parameters:
addToRole
- whether thealg:SigningMethod
elements should be added to an extension under the EntityDescriptor or under the role descriptorsigningMethods
- the signing methods to add- Returns:
- the builder
-
signingMethods
public T signingMethods(boolean addToRole, SigningMethod... signingMethods)
- Parameters:
addToRole
- whether thealg:SigningMethod
elements should be added to an extension under the EntityDescriptor or under the role descriptorsigningMethods
- the signing methods to add- Returns:
- the builder
- See Also:
signingMethods(boolean, List)
-
digestMethods
public T digestMethods(boolean addToRole, List<DigestMethod> digestMethods)
Adds a ordered list ofalg:DigestMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0".- Parameters:
addToRole
- whether thealg:DigestMethod
elements should be added to an extension under the EntityDescriptor or under the role descriptordigestMethods
- the digest methods to add- Returns:
- the builder
-
digestMethods
public T digestMethods(boolean addToRole, DigestMethod... digestMethods)
- Parameters:
addToRole
- whether thealg:DigestMethod
elements should be added to an extension under the EntityDescriptor or under the role descriptordigestMethods
- the digest methods to add- Returns:
- the builder
- See Also:
digestMethods(boolean, List)
-
nameIDFormats
public T nameIDFormats(List<String> nameIDFormats)
Assigns themd:NameIDFormat
elements.- Parameters:
nameIDFormats
- the nameID format strings- Returns:
- the builder
-
nameIDFormats
public T nameIDFormats(String... nameIDFormats)
- Parameters:
nameIDFormats
- the nameID format strings- Returns:
- the builder
- See Also:
nameIDFormats(List)
-
singleLogoutServices
public T singleLogoutServices(List<SingleLogoutService> singleLogoutServices)
Addsmd:SingleLogoutService
elements to theSSODescriptor
.- Parameters:
singleLogoutServices
- single logout service objects (cloned before assignment)- Returns:
- the builder
-
singleLogoutServices
public T singleLogoutServices(SingleLogoutService... singleLogoutServices)
- Parameters:
singleLogoutServices
- single logout service objects (cloned before assignment)- Returns:
- the builder
- See Also:
singleLogoutServices(List)
-
organization
public T organization(Organization organization)
Assigns theOrganization
element to the entity descriptor.- Parameters:
organization
- the organization (will be cloned before assignment)- Returns:
- the builder
-
contactPersons
public T contactPersons(List<ContactPerson> contactPersons)
Assigns theContactPerson
elements to the entity descriptor.- Parameters:
contactPersons
- the contact person elements (will be cloned before assignment)- Returns:
- the builder
-
contactPersons
public T contactPersons(ContactPerson... contactPersons)
- Parameters:
contactPersons
- the contact person elements (will be cloned before assignment)- Returns:
- the builder
- See Also:
contactPersons(List)
-
updateExtensions
protected <E extends XMLObject> void updateExtensions(Extensions extensions, List<E> elements, QName elementName)
Support method that updates anExtensions
element with the supplied elements. It first removes any other matching types before adding the new ones.- Type Parameters:
E
- the extension type- Parameters:
extensions
- the element to update.elements
- the elements to add (may benull
or empty for the remove-case)elementName
- the QName of the types to add
-
-