Package com.exonum.messages.core.runtime
Interface Base.ArtifactSpecOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Base.ArtifactSpec
,Base.ArtifactSpec.Builder
- Enclosing class:
- Base
public static interface Base.ArtifactSpecOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description Base.ArtifactId
getArtifact()
Information uniquely identifying the artifact.Base.ArtifactIdOrBuilder
getArtifactOrBuilder()
Information uniquely identifying the artifact.com.google.protobuf.ByteString
getPayload()
Runtime-specific artifact payload.boolean
hasArtifact()
Information uniquely identifying the artifact.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasArtifact
boolean hasArtifact()Information uniquely identifying the artifact.
.exonum.runtime.ArtifactId artifact = 1;
- Returns:
- Whether the artifact field is set.
-
getArtifact
Base.ArtifactId getArtifact()Information uniquely identifying the artifact.
.exonum.runtime.ArtifactId artifact = 1;
- Returns:
- The artifact.
-
getArtifactOrBuilder
Base.ArtifactIdOrBuilder getArtifactOrBuilder()Information uniquely identifying the artifact.
.exonum.runtime.ArtifactId artifact = 1;
-
getPayload
com.google.protobuf.ByteString getPayload()Runtime-specific artifact payload.
bytes payload = 2;
- Returns:
- The payload.
-