Package org.projectnessie.model
Interface DiffResponse
-
- All Superinterfaces:
PaginatedResponse
@Immutable public interface DiffResponse extends PaginatedResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDiffResponse.DiffEntry
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static org.projectnessie.model.ImmutableDiffResponse.Builderbuilder()java.util.List<DiffResponse.DiffEntry>getDiffs()ReferencegetEffectiveFromReference()ReferencegetEffectiveToReference()-
Methods inherited from interface org.projectnessie.model.PaginatedResponse
getToken, isHasMore
-
-
-
-
Method Detail
-
builder
static org.projectnessie.model.ImmutableDiffResponse.Builder builder()
-
getDiffs
java.util.List<DiffResponse.DiffEntry> getDiffs()
-
getEffectiveFromReference
@Nullable @Nullable Reference getEffectiveFromReference()
-
getEffectiveToReference
@Nullable @Nullable Reference getEffectiveToReference()
-
-