Package dev.sigstore.proto.rekor.v1
Interface KindVersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
KindVersion,KindVersion.Builder
public interface KindVersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKind()Kind is the type of entry being stored in the log.com.google.protobuf.ByteStringgetKindBytes()Kind is the type of entry being stored in the log.java.lang.StringgetVersion()The specific api version of the type.com.google.protobuf.ByteStringgetVersionBytes()The specific api version of the type.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKind
java.lang.String getKind()
Kind is the type of entry being stored in the log. See here for a list: https://github.com/sigstore/rekor/tree/main/pkg/types
string kind = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The kind.
-
getKindBytes
com.google.protobuf.ByteString getKindBytes()
Kind is the type of entry being stored in the log. See here for a list: https://github.com/sigstore/rekor/tree/main/pkg/types
string kind = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for kind.
-
getVersion
java.lang.String getVersion()
The specific api version of the type.
string version = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The specific api version of the type.
string version = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for version.
-
-