Package org.projectnessie.model
Interface ContentResponse
-
@Immutable public interface ContentResponse
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static org.projectnessie.model.ImmutableContentResponse.Builderbuilder()@NotNull @NotNull ContentgetContent()DocumentationgetDocumentation()ReferencegetEffectiveReference()The effective reference (for example a branch or tag) including the commit ID from which the entries were fetched.static ContentResponseof(Content content, Reference effectiveReference)static ContentResponseof(Content content, Reference effectiveReference, Documentation documentation)
-
-
-
Method Detail
-
builder
static org.projectnessie.model.ImmutableContentResponse.Builder builder()
-
getContent
@NotNull @NotNull @Parameter(order=1) @NotNull @NotNull Content getContent()
-
getEffectiveReference
@Nullable @Nullable @Parameter(order=2) Reference getEffectiveReference()
The effective reference (for example a branch or tag) including the commit ID from which the entries were fetched.
-
getDocumentation
@Nullable @Nullable @Parameter(order=3) Documentation getDocumentation()
-
of
static ContentResponse of(Content content, Reference effectiveReference)
-
of
static ContentResponse of(Content content, Reference effectiveReference, Documentation documentation)
-
-