Package net.shibboleth.idp.relyingparty
Class RelyingPartyResolverCredentialHolder
- java.lang.Object
-
- net.shibboleth.idp.relyingparty.RelyingPartyResolverCredentialHolder
-
public class RelyingPartyResolverCredentialHolder extends Object
This is a utility class used as an auto-wiring source for collections of signing and encryptionCredentialobjects so that other layers of the system can gain access to the complete set of them.- Since:
- 4.2.0
-
-
Field Summary
Fields Modifier and Type Field Description private List<Credential>credentialsCredentials to expose.
-
Constructor Summary
Constructors Constructor Description RelyingPartyResolverCredentialHolder(Collection<Credential> creds)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<Credential>getCredentials()Get the credentials to expose to other components.
-
-
-
Field Detail
-
credentials
@Nonnull @NonnullElements private final List<Credential> credentials
Credentials to expose.
-
-
Constructor Detail
-
RelyingPartyResolverCredentialHolder
public RelyingPartyResolverCredentialHolder(@Nullable @NonnullElements Collection<Credential> creds)
Constructor.- Parameters:
creds- credentials to expose to other components
-
-
Method Detail
-
getCredentials
@Nonnull @NonnullElements public Collection<Credential> getCredentials()
Get the credentials to expose to other components.- Returns:
- credentials to expose
-
-