Class DefaultPolicyOperationFactory
java.lang.Object
com.nimbusds.openid.connect.sdk.federation.policy.operations.DefaultPolicyOperationFactory
- All Implemented Interfaces:
PolicyOperationFactory
The default policy operation factory.
Supports all standard OpenID Connect federation policy operations:
Override the createForName(com.nimbusds.openid.connect.sdk.federation.policy.language.OperationName)
method to support additional custom
policies.
Related specifications:
- OpenID Connect Federation 1.0, section 5.1.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateForName
(OperationName name) Creates a policy operation for the specified name.
-
Constructor Details
-
DefaultPolicyOperationFactory
public DefaultPolicyOperationFactory()
-
-
Method Details
-
createForName
Description copied from interface:PolicyOperationFactory
Creates a policy operation for the specified name.- Specified by:
createForName
in interfacePolicyOperationFactory
- Parameters:
name
- The name. Must not benull
.- Returns:
- The policy operation,
null
if not supported.
-