Package com.exonum.messages.core.runtime
Interface Base.ArtifactIdOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Base.ArtifactId,Base.ArtifactId.Builder
- Enclosing class:
- Base
public static interface Base.ArtifactIdOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.StringgetName()Artifact name.com.google.protobuf.ByteStringgetNameBytes()Artifact name.intgetRuntimeId()Runtime identifier.java.lang.StringgetVersion()Semantic version of the artifact.com.google.protobuf.ByteStringgetVersionBytes()Semantic version of the artifact.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getRuntimeId
int getRuntimeId()Runtime identifier.
uint32 runtime_id = 1;- Returns:
- The runtimeId.
-
getName
java.lang.String getName()Artifact name.
string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()Artifact name.
string name = 2;- Returns:
- The bytes for name.
-
getVersion
java.lang.String getVersion()Semantic version of the artifact.
string version = 3;- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()Semantic version of the artifact.
string version = 3;- Returns:
- The bytes for version.
-