Package com.oracle.bmc.apigateway.model
Class WildcardSelectionKey.Builder
- java.lang.Object
-
- com.oracle.bmc.apigateway.model.WildcardSelectionKey.Builder
-
- Enclosing class:
- WildcardSelectionKey
public static class WildcardSelectionKey.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WildcardSelectionKey
build()
WildcardSelectionKey.Builder
copy(WildcardSelectionKey model)
WildcardSelectionKey.Builder
expression(String expression)
A selection key string containing a wildcard to match with the context variable in an incoming request.WildcardSelectionKey.Builder
isDefault(Boolean isDefault)
WildcardSelectionKey.Builder
name(String name)
-
-
-
Method Detail
-
isDefault
public WildcardSelectionKey.Builder isDefault(Boolean isDefault)
-
name
public WildcardSelectionKey.Builder name(String name)
-
expression
public WildcardSelectionKey.Builder expression(String expression)
A selection key string containing a wildcard to match with the context variable in an incoming request.If the context variable matches the string, the request is sent to the route or authentication server associated with the selection key. Valid wildcards are ‘*’ (zero or more characters) and ‘+’ (one or more characters). The string can only contain one wildcard, and the wildcard must be at the start or the end of the string.
- Parameters:
expression
- the value to set- Returns:
- this builder
-
build
public WildcardSelectionKey build()
-
copy
public WildcardSelectionKey.Builder copy(WildcardSelectionKey model)
-
-