public IHalClient
Interface to a HAL Client
@NotNull IHalClient navigate(@NotNull java.util.Map<java.lang.String,? extends java.lang.Object> options, @NotNull java.lang.String link)
Navigates the URL associated with the given link using the current HAL document
options - Map of key-value pairs to use for parsing templated linkslink - Link name to navigate@NotNull IHalClient navigate(@NotNull java.lang.String link)
Navigates the URL associated with the given link using the current HAL document
link - Link name to navigate@Nullable
java.lang.String linkUrl(@NotNull
java.lang.String name)
Returns the HREF of the named link from the current HAL document
void forAll(@NotNull
java.lang.String linkName,
@NotNull
java.util.function.Consumer<java.util.Map> closure)
Calls the closure with a Map of attributes for all links associated with the link name
linkName - Name of the link to loop overclosure - Closure to invoke with the link attributes@Deprecated
@Nullable
java.lang.Object uploadJson(@NotNull
java.lang.String path,
@NotNull
java.lang.String bodyJson)
Upload the JSON document to the provided path, using a PUT request
path - Path to upload the documentbodyJson - JSON contents for the body@Deprecated
@Nullable
java.lang.Object uploadJson(@NotNull
java.lang.String path,
@NotNull
java.lang.String bodyJson,
@NotNull
java.util.function.BiFunction<java.lang.String,java.lang.String,java.lang.Object> closure)
Upload the JSON document to the provided path, using a PUT request
path - Path to upload the documentbodyJson - JSON contents for the bodyclosure - Closure that will be invoked with details about the response. The result from the closure will bereturned.@Deprecated
@Nullable
java.lang.Object uploadJson(@NotNull
java.lang.String path,
@NotNull
java.lang.String bodyJson,
@NotNull
java.util.function.BiFunction<java.lang.String,java.lang.String,java.lang.Object> closure,
boolean encodePath)
Upload the JSON document to the provided path, using a PUT request
path - Path to upload the documentbodyJson - JSON contents for the bodyclosure - Closure that will be invoked with details about the response. The result from the closure will bereturned.encodePath - If the path must be encoded beforehand.@NotNull
au.com.dius.pact.com.github.michaelbull.result.Result<java.lang.Boolean,java.lang.Exception> postJson(@NotNull
java.lang.String url,
@NotNull
java.lang.String body)
Upload the JSON document to the provided URL, using a POST request
url - Url to upload the document tobody - JSON contents for the body@NotNull
au.com.dius.pact.com.github.michaelbull.result.Result<java.lang.Boolean,java.lang.Exception> postJson(@NotNull
java.lang.String url,
@NotNull
java.lang.String body,
@Nullable
kotlin.jvm.functions.Function2<? super java.lang.Integer,? super org.apache.http.client.methods.CloseableHttpResponse,java.lang.Boolean> handler)
Upload the JSON document to the provided URL, using a POST request
url - Url to upload the document tobody - JSON contents for the bodyhandler - Response handler@NotNull
com.google.gson.JsonElement fetch(@NotNull
java.lang.String path,
boolean encodePath)
Fetches the HAL document from the provided path
path - The path to the HAL document. If it is a relative path, it is relative to the base URLencodePath - If the path should be encoded to make a valid URL@NotNull
com.google.gson.JsonElement fetch(@NotNull
java.lang.String path)
Fetches the HAL document from the provided path
path - The path to the HAL document. If it is a relative path, it is relative to the base URL@NotNull IHalClient withDocContext(@NotNull java.util.Map<java.lang.String,? extends java.lang.Object> docAttributes)
Sets the starting context from a previous broker interaction (Pact document)
@NotNull
au.com.dius.pact.com.github.michaelbull.result.Result<java.lang.Boolean,java.lang.Exception> putJson(@NotNull
java.lang.String link,
@NotNull
java.util.Map<java.lang.String,? extends java.lang.Object> options,
@NotNull
java.lang.String json)
Upload a JSON document to the current path link, using a PUT request