Class AbstractEntityDescriptorFactoryBean<T extends AbstractEntityDescriptorBuilder<?>>
- java.lang.Object
-
- org.springframework.beans.factory.config.AbstractFactoryBean<T>
-
- se.litsec.opensaml.core.spring.AbstractSAMLObjectBuilderFactoryBean<EntityDescriptor>
-
- se.litsec.opensaml.saml2.metadata.build.spring.AbstractEntityDescriptorFactoryBean<T>
-
- Type Parameters:
T
- the type of builder being used
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.BeanClassLoaderAware
,org.springframework.beans.factory.BeanFactoryAware
,org.springframework.beans.factory.DisposableBean
,org.springframework.beans.factory.FactoryBean<EntityDescriptor>
,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
IdpEntityDescriptorFactoryBean
,SpEntityDescriptorFactoryBean
public abstract class AbstractEntityDescriptorFactoryBean<T extends AbstractEntityDescriptorBuilder<?>> extends AbstractSAMLObjectBuilderFactoryBean<EntityDescriptor>
Abstract base factory bean for buildingEntityDescriptor
objects.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Constructor Summary
Constructors Constructor Description AbstractEntityDescriptorFactoryBean()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract T
_builder()
Returns the internal builder of the correct type.Class<?>
getObjectType()
void
setCacheDuration(Long cacheDuration)
Assigns the cacheDuration attribute for theEntityDescriptor
.void
setContactPersons(List<ContactPerson> contactPersons)
Assigns theContactPerson
elements to the entity descriptor.void
setDigestMethodsGlobal(List<DigestMethod> digestMethods)
Adds a ordered list ofalg:DigestMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the entity descriptor extensions element.void
setDigestMethodsRole(List<DigestMethod> digestMethods)
Adds a ordered list ofalg:DigestMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the extensions element of the role descriptor.void
setEntityAttributesExtension(List<Attribute> attributes)
Adds attributes to themdattr:EntityAttributes
element that is part of the metadata extension element.void
setEntityCategories(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.void
setEntityID(String entityID)
Assigns the entityID for theEntityDescriptor
.void
setID(String id)
Assigns the ID attribute for theEntityDescriptor
.void
setKeyDescriptors(List<KeyDescriptor> keyDescriptors)
Adds the key descriptor elements.void
setNameIDFormats(List<String> nameIDFormats)
Assigns themd:NameIDFormat
elements.void
setOrganization(Organization organization)
Assigns theOrganization
element to the entity descriptor.void
setSigningMethodsGlobal(List<SigningMethod> signingMethods)
Adds a ordered list ofalg:SigningMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the entity descriptor extensions element.void
setSigningMethodsRole(List<SigningMethod> signingMethods)
Adds a ordered list ofalg:SigningMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the extensions element of the role descriptor.void
setSingleLogoutServices(List<SingleLogoutService> singleLogoutServices)
Addsmd:SingleLogoutService
elements to theSSODescriptor
.void
setUiInfoExtension(UIInfo uiInfo)
Assigns themdui:UIInfo
element as an extension to the role descriptor.void
setValidUntil(Instant time)
Assigns the valid until time.-
Methods inherited from class se.litsec.opensaml.core.spring.AbstractSAMLObjectBuilderFactoryBean
builder, createInstance, localizedStringListToVarArgs, stringListToVarArgs, toVarArgs
-
-
-
-
Method Detail
-
_builder
protected abstract T _builder()
Returns the internal builder of the correct type.- Returns:
- the builder to use
-
setEntityID
public void setEntityID(String entityID)
Assigns the entityID for theEntityDescriptor
.- Parameters:
entityID
- the entityID
-
setID
public void setID(String id)
Assigns the ID attribute for theEntityDescriptor
.- Parameters:
id
- the ID
-
setCacheDuration
public void setCacheDuration(Long cacheDuration)
Assigns the cacheDuration attribute for theEntityDescriptor
.- Parameters:
cacheDuration
- the cache duration (in milliseconds)
-
setValidUntil
public void setValidUntil(Instant time)
Assigns the valid until time.- Parameters:
time
- valid until
-
setEntityAttributesExtension
public void setEntityAttributesExtension(List<Attribute> attributes)
Adds attributes to themdattr:EntityAttributes
element that is part of the metadata extension element.- Parameters:
attributes
- a list of attributes- See Also:
setEntityCategories(List)
-
setEntityCategories
public void setEntityCategories(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.- Parameters:
entityCategories
- the entity category values that should be added- See Also:
setEntityAttributesExtension(List)
-
setUiInfoExtension
public void setUiInfoExtension(UIInfo uiInfo)
Assigns themdui:UIInfo
element as an extension to the role descriptor.- Parameters:
uiInfo
- theUIInfo
element (will be cloned before assignment)
-
setKeyDescriptors
public void setKeyDescriptors(List<KeyDescriptor> keyDescriptors)
Adds the key descriptor elements.- Parameters:
keyDescriptors
- the key descriptors
-
setSigningMethodsGlobal
public void setSigningMethodsGlobal(List<SigningMethod> signingMethods)
Adds a ordered list ofalg:SigningMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the entity descriptor extensions element.- Parameters:
signingMethods
- the methods to add- See Also:
setSigningMethodsRole(List)
-
setSigningMethodsRole
public void setSigningMethodsRole(List<SigningMethod> signingMethods)
Adds a ordered list ofalg:SigningMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the extensions element of the role descriptor. These extensions have precedence over those given as extensions to the entity descriptor (seesetSigningMethodsGlobal(List)
).- Parameters:
signingMethods
- the methods to add
-
setDigestMethodsGlobal
public void setDigestMethodsGlobal(List<DigestMethod> digestMethods)
Adds a ordered list ofalg:DigestMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the entity descriptor extensions element.- Parameters:
digestMethods
- the methods to add- See Also:
setDigestMethodsRole(List)
-
setDigestMethodsRole
public void setDigestMethodsRole(List<DigestMethod> digestMethods)
Adds a ordered list ofalg:DigestMethod
elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the extensions element of the role descriptor. These extensions have precedence over those given as extensions to the entity descriptor (seesetDigestMethodsGlobal(List)
).- Parameters:
digestMethods
- the methods to add
-
setNameIDFormats
public void setNameIDFormats(List<String> nameIDFormats)
Assigns themd:NameIDFormat
elements.- Parameters:
nameIDFormats
- the nameID format strings
-
setSingleLogoutServices
public void setSingleLogoutServices(List<SingleLogoutService> singleLogoutServices)
Addsmd:SingleLogoutService
elements to theSSODescriptor
.- Parameters:
singleLogoutServices
- single logout service objects (cloned before assignment)
-
setOrganization
public void setOrganization(Organization organization)
Assigns theOrganization
element to the entity descriptor.- Parameters:
organization
- the organization (will be cloned before assignment)
-
setContactPersons
public void setContactPersons(List<ContactPerson> contactPersons)
Assigns theContactPerson
elements to the entity descriptor.- Parameters:
contactPersons
- the contact person elements (will be cloned before assignment)
-
getObjectType
public Class<?> getObjectType()
- Specified by:
getObjectType
in interfaceorg.springframework.beans.factory.FactoryBean<T extends AbstractEntityDescriptorBuilder<?>>
- Specified by:
getObjectType
in classorg.springframework.beans.factory.config.AbstractFactoryBean<EntityDescriptor>
-
-