Package org.infinispan.rest.framework
Interface LookupResult
-
public interface LookupResult
- Since:
- 10.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
LookupResult.Status
Status of the lookup operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Invocation
getInvocation()
Returns the invocation to carry out aRestRequest
LookupResult.Status
getStatus()
java.util.Map<java.lang.String,java.lang.String>
getVariables()
In case the invocation contains paths withVariablePathItem
, returns the value for each variable or empty otherwise.
-
-
-
Method Detail
-
getInvocation
Invocation getInvocation()
Returns the invocation to carry out aRestRequest
-
getVariables
java.util.Map<java.lang.String,java.lang.String> getVariables()
In case the invocation contains paths withVariablePathItem
, returns the value for each variable or empty otherwise.
-
getStatus
LookupResult.Status getStatus()
- Returns:
- Status of the lookup operation
-
-