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 4.1.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolicyOperation
createForName(OperationName name)
Creates a policy operation for the specified name.
-
-
-
Method Detail
-
createForName
PolicyOperation createForName(OperationName name)
Creates a policy operation for the specified name.- Parameters:
name
- The name. Must not benull
.- Returns:
- The policy operation,
null
if not supported.
-
-