Interface PolicyOperationFactory
- All Known Implementing Classes:
DefaultPolicyOperationFactory
public interface PolicyOperationFactory
Policy operation factory.
To support non-standard policy operations on metadata parameters consider
overriding DefaultPolicyOperationFactory.createForName(com.nimbusds.openid.connect.sdk.federation.policy.language.OperationName)
.
Related specifications:
- OpenID Connect Federation 1.0, section 5.1.
-
Method Summary
Modifier and TypeMethodDescriptioncreateForName
(OperationName name) Creates a policy operation for the specified name.
-
Method Details
-
createForName
Creates a policy operation for the specified name.- Parameters:
name
- The name. Must not benull
.- Returns:
- The policy operation,
null
if not supported.
-