Class AssertionConsumerServiceFactoryBean
- java.lang.Object
-
- org.springframework.beans.factory.config.AbstractFactoryBean<T>
-
- se.litsec.opensaml.core.spring.AbstractSAMLObjectBuilderFactoryBean<AssertionConsumerService>
-
- se.litsec.opensaml.saml2.metadata.build.spring.AssertionConsumerServiceFactoryBean
-
- 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<AssertionConsumerService>,org.springframework.beans.factory.InitializingBean
public class AssertionConsumerServiceFactoryBean extends AbstractSAMLObjectBuilderFactoryBean<AssertionConsumerService>
A Spring factory bean for creatingAssertionConsumerServiceobjects.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Constructor Summary
Constructors Constructor Description AssertionConsumerServiceFactoryBean()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AbstractSAMLObjectBuilder<AssertionConsumerService>builder()Returns the builder.Class<?>getObjectType()voidsetBinding(String binding)Assigns the binding of the servicevoidsetIndex(Integer index)Assigns the index for the service.voidsetIsDefault(Boolean isDefault)Sets theisDefaultattribute of the service.voidsetLocation(String location)Assigns the location URI.-
Methods inherited from class se.litsec.opensaml.core.spring.AbstractSAMLObjectBuilderFactoryBean
createInstance, localizedStringListToVarArgs, stringListToVarArgs, toVarArgs
-
-
-
-
Method Detail
-
getObjectType
public Class<?> getObjectType()
- Specified by:
getObjectTypein interfaceorg.springframework.beans.factory.FactoryBean<AssertionConsumerService>- Specified by:
getObjectTypein classorg.springframework.beans.factory.config.AbstractFactoryBean<AssertionConsumerService>
-
builder
protected AbstractSAMLObjectBuilder<AssertionConsumerService> builder()
Returns the builder.- Specified by:
builderin classAbstractSAMLObjectBuilderFactoryBean<AssertionConsumerService>- Returns:
- the builder
-
setLocation
public void setLocation(String location)
Assigns the location URI.- Parameters:
location- the URI- See Also:
AssertionConsumerServiceBuilder.location(String)
-
setBinding
public void setBinding(String binding)
Assigns the binding of the service- Parameters:
binding- the binding URI- See Also:
AssertionConsumerServiceBuilder.binding(String)
-
setIndex
public void setIndex(Integer index)
Assigns the index for the service.- Parameters:
index- the index- See Also:
AssertionConsumerServiceBuilder.index(Integer)
-
setIsDefault
public void setIsDefault(Boolean isDefault)
Sets theisDefaultattribute of the service.- Parameters:
isDefault- the Boolean- See Also:
AssertionConsumerServiceBuilder.isDefault(Boolean)
-
-