Package org.projectnessie.api.v1.http
Interface HttpDiffApi
- All Superinterfaces:
DiffApi
@Consumes("application/json")
@Consumes("application/json")
@Path("v1/diffs")
@Path("v1/diffs")
public interface HttpDiffApi
extends DiffApi
-
Method Summary
Modifier and TypeMethodDescriptiongetDiff(DiffParams params) Returns a list of diff values that show the difference between two given references.
-
Method Details
-
getDiff
@GET @GET @Produces("application/json") @Produces("application/json") @Path("{fromRefWithHash}...{toRefWithHash}") @Path("{fromRefWithHash}...{toRefWithHash}") DiffResponse getDiff(@BeanParam @BeanParam DiffParams params) throws NessieNotFoundException Description copied from interface:DiffApiReturns a list of diff values that show the difference between two given references.- Specified by:
getDiffin interfaceDiffApi- Parameters:
params- TheDiffParamsthat includes the parameters for this API call.- Returns:
- A list of diff values that show the difference between two given references.
- Throws:
NessieNotFoundException
-