Class AuthorizationConfig
- java.lang.Object
-
- io.apiman.gateway.engine.policies.config.AuthorizationConfig
-
public class AuthorizationConfig extends Object
Configuration object for the Authorization policy.
-
-
Constructor Summary
Constructors Constructor Description AuthorizationConfig()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MultipleMatchTypegetMultiMatch()UnmatchedRequestTypegetRequestUnmatched()List<AuthorizationRule>getRules()voidsetMultiMatch(MultipleMatchType multiMatch)voidsetRequestUnmatched(UnmatchedRequestType requestUnmatched)voidsetRules(List<AuthorizationRule> rules)
-
-
-
Method Detail
-
getRules
public List<AuthorizationRule> getRules()
- Returns:
- the rules
-
setRules
public void setRules(List<AuthorizationRule> rules)
- Parameters:
rules- the rules to set
-
getRequestUnmatched
public UnmatchedRequestType getRequestUnmatched()
- Returns:
- the requestUnmatched
-
setRequestUnmatched
public void setRequestUnmatched(UnmatchedRequestType requestUnmatched)
- Parameters:
requestUnmatched- the requestUnmatched to set
-
getMultiMatch
public MultipleMatchType getMultiMatch()
- Returns:
- the multiMatch
-
setMultiMatch
public void setMultiMatch(MultipleMatchType multiMatch)
- Parameters:
multiMatch- the multiMatch to set
-
-