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 creatingAssertionConsumerService
objects.- 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()
void
setBinding(String binding)
Assigns the binding of the servicevoid
setIndex(Integer index)
Assigns the index for the service.void
setIsDefault(Boolean isDefault)
Sets theisDefault
attribute of the service.void
setLocation(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:
getObjectType
in interfaceorg.springframework.beans.factory.FactoryBean<AssertionConsumerService>
- Specified by:
getObjectType
in classorg.springframework.beans.factory.config.AbstractFactoryBean<AssertionConsumerService>
-
builder
protected AbstractSAMLObjectBuilder<AssertionConsumerService> builder()
Returns the builder.- Specified by:
builder
in 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 theisDefault
attribute of the service.- Parameters:
isDefault
- the Boolean- See Also:
AssertionConsumerServiceBuilder.isDefault(Boolean)
-
-