Class AbstractAuthnRequestBuilder<BUILDER extends AbstractSAMLObjectBuilder<AuthnRequest>>
- java.lang.Object
-
- se.litsec.opensaml.core.AbstractSAMLObjectBuilder<T>
-
- se.litsec.opensaml.saml2.core.build.AbstractRequestBuilder<AuthnRequest,BUILDER>
-
- se.litsec.opensaml.saml2.core.build.AbstractAuthnRequestBuilder<BUILDER>
-
- All Implemented Interfaces:
SAMLObjectBuilder<AuthnRequest>
- Direct Known Subclasses:
AuthnRequestBuilder
,ExtendedAuthnRequestBuilder
public abstract class AbstractAuthnRequestBuilder<BUILDER extends AbstractSAMLObjectBuilder<AuthnRequest>> extends AbstractRequestBuilder<AuthnRequest,BUILDER>
Abstract builder forAuthnRequest
messages.
-
-
Constructor Summary
Constructors Constructor Description AbstractAuthnRequestBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BUILDER
assertionConsumerServiceIndex(Integer index)
Assigns theAssertionConsumerServiceIndex
attribute to theAuthnRequest
object.BUILDER
assertionConsumerServiceURL(String url)
Assigns theAssertionConsumerServiceURL
attribute to theAuthnRequest
object.BUILDER
attributeConsumerServiceIndex(Integer index)
Assigns theAttributeConsumerServiceIndex
attribute to theAuthnRequest
object.AuthnRequest
build()
The default implementation of this method assumes that the object has been built during assignment of its attributes and elements so it simply returns the object.BUILDER
conditions(Conditions conditions)
Assigns aConditions
element to theAuthnRequest
object.BUILDER
forceAuthn(Boolean b)
Assigns theForceAuthn
attribute to theAuthnRequest
object.protected Class<AuthnRequest>
getObjectType()
Returns the object type.BUILDER
isPassive(Boolean b)
Assigns theIsPassive
attribute to theAuthnRequest
object.BUILDER
nameIDPolicy(NameIDPolicy nameIDPolicy)
Assigns aNameIDPolicy
element to theAuthnRequest
object.BUILDER
postProtocolBinding()
AssignsSAMLConstants.SAML2_POST_BINDING_URI
to theProtocolBinding
attribute of theAuthnRequest
object.BUILDER
protocolBinding(String binding)
Assigns theProtocolBinding
attribute to theAuthnRequest
object.BUILDER
providerName(String name)
Assigns theProviderName
attribute to theAuthnRequest
object.BUILDER
requestedAuthnContext(RequestedAuthnContext requestedAuthnContext)
Assigns aRequestedAuthnContext
element to theAuthnRequest
object.BUILDER
scoping(Scoping scoping)
Assigns aScoping
element to theAuthnRequest
object.BUILDER
subject(Subject subject)
Assigns aSubject
element to theAuthnRequest
object.-
Methods inherited from class se.litsec.opensaml.saml2.core.build.AbstractRequestBuilder
consent, destination, extensions, getThis, id, issueInstant, issuer, issuer, version, version
-
Methods inherited from class se.litsec.opensaml.core.AbstractSAMLObjectBuilder
getDefaultElementName, object
-
-
-
-
Method Detail
-
build
public AuthnRequest build()
The default implementation of this method assumes that the object has been built during assignment of its attributes and elements so it simply returns the object.Implementations that need to perform additional processing during the build step should override this method.
- Specified by:
build
in interfaceSAMLObjectBuilder<BUILDER extends AbstractSAMLObjectBuilder<AuthnRequest>>
- Overrides:
build
in classAbstractRequestBuilder<AuthnRequest,BUILDER extends AbstractSAMLObjectBuilder<AuthnRequest>>
- Returns:
- the built object
-
forceAuthn
public BUILDER forceAuthn(Boolean b)
Assigns theForceAuthn
attribute to theAuthnRequest
object.- Parameters:
b
- boolean flag- Returns:
- the builder
-
isPassive
public BUILDER isPassive(Boolean b)
Assigns theIsPassive
attribute to theAuthnRequest
object.- Parameters:
b
- boolean flag- Returns:
- the builder
-
protocolBinding
public BUILDER protocolBinding(String binding)
Assigns theProtocolBinding
attribute to theAuthnRequest
object.- Parameters:
binding
- the binding URI- Returns:
- the builder
- See Also:
postProtocolBinding()
-
postProtocolBinding
public BUILDER postProtocolBinding()
AssignsSAMLConstants.SAML2_POST_BINDING_URI
to theProtocolBinding
attribute of theAuthnRequest
object.This is the default.
- Returns:
- the builder
-
assertionConsumerServiceIndex
public BUILDER assertionConsumerServiceIndex(Integer index)
Assigns theAssertionConsumerServiceIndex
attribute to theAuthnRequest
object.- Parameters:
index
- the index- Returns:
- the builder
-
assertionConsumerServiceURL
public BUILDER assertionConsumerServiceURL(String url)
Assigns theAssertionConsumerServiceURL
attribute to theAuthnRequest
object.- Parameters:
url
- the URL- Returns:
- the builder
-
attributeConsumerServiceIndex
public BUILDER attributeConsumerServiceIndex(Integer index)
Assigns theAttributeConsumerServiceIndex
attribute to theAuthnRequest
object.- Parameters:
index
- the index- Returns:
- the builder
-
providerName
public BUILDER providerName(String name)
Assigns theProviderName
attribute to theAuthnRequest
object.- Parameters:
name
- the provider name- Returns:
- the builder
-
subject
public BUILDER subject(Subject subject)
Assigns aSubject
element to theAuthnRequest
object.- Parameters:
subject
- the subject (will be cloned before assignment)- Returns:
- the builder
-
nameIDPolicy
public BUILDER nameIDPolicy(NameIDPolicy nameIDPolicy)
Assigns aNameIDPolicy
element to theAuthnRequest
object.- Parameters:
nameIDPolicy
- the nameID policy (will be cloned before assignment)- Returns:
- the builder
- See Also:
NameIDPolicyBuilder
-
conditions
public BUILDER conditions(Conditions conditions)
Assigns aConditions
element to theAuthnRequest
object.- Parameters:
conditions
- the request conditions (will be cloned before assignment)- Returns:
- the builder
-
requestedAuthnContext
public BUILDER requestedAuthnContext(RequestedAuthnContext requestedAuthnContext)
Assigns aRequestedAuthnContext
element to theAuthnRequest
object.- Parameters:
requestedAuthnContext
- the requested authentication context (will be cloned before assignment)- Returns:
- the builder
- See Also:
RequestedAuthnContextBuilder
-
scoping
public BUILDER scoping(Scoping scoping)
Assigns aScoping
element to theAuthnRequest
object.- Parameters:
scoping
- the scoping element to add (will be cloned before assignment)- Returns:
- the builder
-
getObjectType
protected Class<AuthnRequest> getObjectType()
Returns the object type.- Specified by:
getObjectType
in classAbstractSAMLObjectBuilder<AuthnRequest>
- Returns:
- the object type
-
-