Package org.projectnessie.client.ext
Interface NessieClientUriResolver
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface NessieClientUriResolverThis interface can be implemented by test classes to customize the resolution of Nessie Client URIs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URIresolve(NessieApiVersion apiVersion, java.net.URI base)Resolved the base Web Container URI to a version-specific Nessie REST API URI.
-
-
-
Method Detail
-
resolve
java.net.URI resolve(NessieApiVersion apiVersion, java.net.URI base)
Resolved the base Web Container URI to a version-specific Nessie REST API URI.- Parameters:
apiVersion- Requested Nessie API version.base- Web Container URI without Nessie API-specific path elements.- Returns:
- version-specific Nessie REST API URI.
-
-