Class ScopingBuilder
- java.lang.Object
-
- se.litsec.opensaml.core.AbstractSAMLObjectBuilder<Scoping>
-
- se.litsec.opensaml.saml2.core.build.ScopingBuilder
-
- All Implemented Interfaces:
SAMLObjectBuilder<Scoping>
public class ScopingBuilder extends AbstractSAMLObjectBuilder<Scoping>
Builder class forScoping
elements.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Constructor Summary
Constructors Constructor Description ScopingBuilder()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScopingBuilder
builder()
Utility method that creates a builder.protected Class<Scoping>
getObjectType()
Returns the object type.static IDPEntry
idpEntry(String providerID, String name, String loc)
Creates anIDPEntry
element.ScopingBuilder
idpList(String completeUri, List<IDPEntry> idpEntries)
Adds theIDPList
element.ScopingBuilder
idpList(String completeUri, IDPEntry... idpEntries)
ScopingBuilder
proxyCount(Integer count)
Assigns theProxyCount
attribute.ScopingBuilder
requesterIDs(String... ids)
ScopingBuilder
requesterIDs(List<String> ids)
AssignsRequesterID
elements.-
Methods inherited from class se.litsec.opensaml.core.AbstractSAMLObjectBuilder
build, getDefaultElementName, object
-
-
-
-
Method Detail
-
builder
public static ScopingBuilder builder()
Utility method that creates a builder.- Returns:
- a builder
-
proxyCount
public ScopingBuilder proxyCount(Integer count)
Assigns theProxyCount
attribute.- Parameters:
count
- the proxy count- Returns:
- the builder
-
idpList
public ScopingBuilder idpList(String completeUri, List<IDPEntry> idpEntries)
Adds theIDPList
element.- Parameters:
completeUri
- theGetComplete
element of theIDPList
element (may benull
)idpEntries
- theIDPEntry
elements of theIDPList
element- Returns:
- the builder
-
idpList
public ScopingBuilder idpList(String completeUri, IDPEntry... idpEntries)
- Parameters:
completeUri
- theGetComplete
element of theIDPList
element (may benull
)idpEntries
- theIDPEntry
elements of theIDPList
element- Returns:
- the builder
- See Also:
idpList(String, List)
-
idpEntry
public static IDPEntry idpEntry(String providerID, String name, String loc)
Creates anIDPEntry
element.- Parameters:
providerID
- theProviderID
attributename
- theName
attributeloc
- theLoc
attribute- Returns:
- an
IDPEntry
element
-
requesterIDs
public ScopingBuilder requesterIDs(List<String> ids)
AssignsRequesterID
elements.- Parameters:
ids
- theRequesterID
elements to add- Returns:
- the builder
-
requesterIDs
public ScopingBuilder requesterIDs(String... ids)
- Parameters:
ids
- theRequesterID
elements to add- Returns:
- the builder
- See Also:
requesterIDs(List)
-
getObjectType
protected Class<Scoping> getObjectType()
Returns the object type.- Specified by:
getObjectType
in classAbstractSAMLObjectBuilder<Scoping>
- Returns:
- the object type
-
-