Class BuildOccurrence (2.13.0)

public final class BuildOccurrence extends GeneratedMessageV3 implements BuildOccurrenceOrBuilder

Details of a build occurrence.

Protobuf type grafeas.v1.BuildOccurrence

Static Fields

INTOTO_PROVENANCE_FIELD_NUMBER

public static final int INTOTO_PROVENANCE_FIELD_NUMBER
Field Value
TypeDescription
int

INTOTO_STATEMENT_FIELD_NUMBER

public static final int INTOTO_STATEMENT_FIELD_NUMBER
Field Value
TypeDescription
int

PROVENANCE_BYTES_FIELD_NUMBER

public static final int PROVENANCE_BYTES_FIELD_NUMBER
Field Value
TypeDescription
int

PROVENANCE_FIELD_NUMBER

public static final int PROVENANCE_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static BuildOccurrence getDefaultInstance()
Returns
TypeDescription
BuildOccurrence

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static BuildOccurrence.Builder newBuilder()
Returns
TypeDescription
BuildOccurrence.Builder

newBuilder(BuildOccurrence prototype)

public static BuildOccurrence.Builder newBuilder(BuildOccurrence prototype)
Parameter
NameDescription
prototypeBuildOccurrence
Returns
TypeDescription
BuildOccurrence.Builder

parseDelimitedFrom(InputStream input)

public static BuildOccurrence parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static BuildOccurrence parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static BuildOccurrence parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static BuildOccurrence parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static BuildOccurrence parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static BuildOccurrence parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static BuildOccurrence parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static BuildOccurrence parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static BuildOccurrence parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static BuildOccurrence parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static BuildOccurrence parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static BuildOccurrence parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
BuildOccurrence
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<BuildOccurrence> parser()
Returns
TypeDescription
Parser<BuildOccurrence>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getDefaultInstanceForType()

public BuildOccurrence getDefaultInstanceForType()
Returns
TypeDescription
BuildOccurrence

getIntotoProvenance()

public InTotoProvenance getIntotoProvenance()

Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.

.grafeas.v1.InTotoProvenance intoto_provenance = 3;

Returns
TypeDescription
InTotoProvenance

The intotoProvenance.

getIntotoProvenanceOrBuilder()

public InTotoProvenanceOrBuilder getIntotoProvenanceOrBuilder()

Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.

.grafeas.v1.InTotoProvenance intoto_provenance = 3;

Returns
TypeDescription
InTotoProvenanceOrBuilder

getIntotoStatement()

public InTotoStatement getIntotoStatement()

In-toto Statement representation as defined in spec. The intoto_statement can contain any type of provenance. The serialized payload of the statement can be stored and signed in the Occurrence's envelope.

.grafeas.v1.InTotoStatement intoto_statement = 4;

Returns
TypeDescription
InTotoStatement

The intotoStatement.

getIntotoStatementOrBuilder()

public InTotoStatementOrBuilder getIntotoStatementOrBuilder()

In-toto Statement representation as defined in spec. The intoto_statement can contain any type of provenance. The serialized payload of the statement can be stored and signed in the Occurrence's envelope.

.grafeas.v1.InTotoStatement intoto_statement = 4;

Returns
TypeDescription
InTotoStatementOrBuilder

getParserForType()

public Parser<BuildOccurrence> getParserForType()
Returns
TypeDescription
Parser<BuildOccurrence>
Overrides

getProvenance()

public BuildProvenance getProvenance()

The actual provenance for the build.

.grafeas.v1.BuildProvenance provenance = 1;

Returns
TypeDescription
BuildProvenance

The provenance.

getProvenanceBytes()

public String getProvenanceBytes()

Serialized JSON representation of the provenance, used in generating the build signature in the corresponding build note. After verifying the signature, provenance_bytes can be unmarshalled and compared to the provenance to confirm that it is unchanged. A base64-encoded string representation of the provenance bytes is used for the signature in order to interoperate with openssl which expects this format for signature verification. The serialized form is captured both to avoid ambiguity in how the provenance is marshalled to json as well to prevent incompatibilities with future changes.

string provenance_bytes = 2;

Returns
TypeDescription
String

The provenanceBytes.

getProvenanceBytesBytes()

public ByteString getProvenanceBytesBytes()

Serialized JSON representation of the provenance, used in generating the build signature in the corresponding build note. After verifying the signature, provenance_bytes can be unmarshalled and compared to the provenance to confirm that it is unchanged. A base64-encoded string representation of the provenance bytes is used for the signature in order to interoperate with openssl which expects this format for signature verification. The serialized form is captured both to avoid ambiguity in how the provenance is marshalled to json as well to prevent incompatibilities with future changes.

string provenance_bytes = 2;

Returns
TypeDescription
ByteString

The bytes for provenanceBytes.

getProvenanceOrBuilder()

public BuildProvenanceOrBuilder getProvenanceOrBuilder()

The actual provenance for the build.

.grafeas.v1.BuildProvenance provenance = 1;

Returns
TypeDescription
BuildProvenanceOrBuilder

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getUnknownFields()

public final UnknownFieldSet getUnknownFields()
Returns
TypeDescription
UnknownFieldSet
Overrides

hasIntotoProvenance()

public boolean hasIntotoProvenance()

Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.

.grafeas.v1.InTotoProvenance intoto_provenance = 3;

Returns
TypeDescription
boolean

Whether the intotoProvenance field is set.

hasIntotoStatement()

public boolean hasIntotoStatement()

In-toto Statement representation as defined in spec. The intoto_statement can contain any type of provenance. The serialized payload of the statement can be stored and signed in the Occurrence's envelope.

.grafeas.v1.InTotoStatement intoto_statement = 4;

Returns
TypeDescription
boolean

Whether the intotoStatement field is set.

hasProvenance()

public boolean hasProvenance()

The actual provenance for the build.

.grafeas.v1.BuildProvenance provenance = 1;

Returns
TypeDescription
boolean

Whether the provenance field is set.

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public BuildOccurrence.Builder newBuilderForType()
Returns
TypeDescription
BuildOccurrence.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected BuildOccurrence.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
BuildOccurrence.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public BuildOccurrence.Builder toBuilder()
Returns
TypeDescription
BuildOccurrence.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides Exceptions
TypeDescription
IOException