public static final class AddRuleProps.Builder
extends java.lang.Object
AddRuleProps
Constructor and Description |
---|
Builder() |
Modifier and Type | Method and Description |
---|---|
AddRuleProps |
build()
Builds the configured instance.
|
AddRuleProps.Builder |
conditions(java.util.List<? extends ListenerCondition> conditions)
Sets the value of
AddRuleProps.getConditions() |
AddRuleProps.Builder |
hostHeader(java.lang.String hostHeader)
Deprecated.
Use `conditions` instead.
|
AddRuleProps.Builder |
pathPattern(java.lang.String pathPattern)
Deprecated.
Use `conditions` instead.
|
AddRuleProps.Builder |
pathPatterns(java.util.List<java.lang.String> pathPatterns)
Deprecated.
Use `conditions` instead.
|
AddRuleProps.Builder |
priority(java.lang.Number priority)
Sets the value of
AddRuleProps.getPriority() |
public AddRuleProps.Builder conditions(java.util.List<? extends ListenerCondition> conditions)
AddRuleProps.getConditions()
conditions
- Rule applies if matches the conditions.this
@Deprecated public AddRuleProps.Builder hostHeader(java.lang.String hostHeader)
AddRuleProps.getHostHeader()
hostHeader
- Rule applies if the requested host matches the indicated host.
May contain up to three '*' wildcards.
Requires that priority is set.
this
@Deprecated public AddRuleProps.Builder pathPattern(java.lang.String pathPattern)
AddRuleProps.getPathPattern()
pathPattern
- Rule applies if the requested path matches the given path pattern.
May contain up to three '*' wildcards.
Requires that priority is set.
this
@Deprecated public AddRuleProps.Builder pathPatterns(java.util.List<java.lang.String> pathPatterns)
AddRuleProps.getPathPatterns()
pathPatterns
- Rule applies if the requested path matches any of the given patterns.
May contain up to three '*' wildcards.
Requires that priority is set.
this
public AddRuleProps.Builder priority(java.lang.Number priority)
AddRuleProps.getPriority()
priority
- Priority of this target group.
The rule with the lowest priority will be used for every request.
If priority is not given, these target groups will be added as
defaults, and must not have conditions.
Priorities must be unique.
this
public AddRuleProps build()
AddRuleProps
java.lang.NullPointerException
- if any required attribute was not provided