Package io.temporal.api.nexus.v1
Interface IncomingServiceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IncomingService,IncomingService.Builder
@Generated(value="protoc", comments="annotations:IncomingServiceOrBuilder.java.pb.meta") public interface IncomingServiceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestampgetCreatedTime()The date and time when the service was created.TimestampOrBuildergetCreatedTimeOrBuilder()The date and time when the service was created.java.lang.StringgetId()Unique server-generated service ID.com.google.protobuf.ByteStringgetIdBytes()Unique server-generated service ID.TimestampgetLastModifiedTime()The date and time when the service was last modified.TimestampOrBuildergetLastModifiedTimeOrBuilder()The date and time when the service was last modified.IncomingServiceSpecgetSpec()Spec for the service.IncomingServiceSpecOrBuildergetSpecOrBuilder()Spec for the service.java.lang.StringgetUrlPrefix()Server exposed URL prefix for invocation of operations on this service.com.google.protobuf.ByteStringgetUrlPrefixBytes()Server exposed URL prefix for invocation of operations on this service.longgetVersion()Data version for this service, incremented for every update issued via the UpdateNexusIncomingService API.booleanhasCreatedTime()The date and time when the service was created.booleanhasLastModifiedTime()The date and time when the service was last modified.booleanhasSpec()Spec for the service.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
long getVersion()
Data version for this service, incremented for every update issued via the UpdateNexusIncomingService API.
int64 version = 1;- Returns:
- The version.
-
getId
java.lang.String getId()
Unique server-generated service ID.
string id = 2;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Unique server-generated service ID.
string id = 2;- Returns:
- The bytes for id.
-
hasSpec
boolean hasSpec()
Spec for the service.
.temporal.api.nexus.v1.IncomingServiceSpec spec = 3;- Returns:
- Whether the spec field is set.
-
getSpec
IncomingServiceSpec getSpec()
Spec for the service.
.temporal.api.nexus.v1.IncomingServiceSpec spec = 3;- Returns:
- The spec.
-
getSpecOrBuilder
IncomingServiceSpecOrBuilder getSpecOrBuilder()
Spec for the service.
.temporal.api.nexus.v1.IncomingServiceSpec spec = 3;
-
hasCreatedTime
boolean hasCreatedTime()
The date and time when the service was created. (-- api-linter: core::0142::time-field-names=disabled aip.dev/not-precedent: Not following linter rules. --).google.protobuf.Timestamp created_time = 4;- Returns:
- Whether the createdTime field is set.
-
getCreatedTime
Timestamp getCreatedTime()
The date and time when the service was created. (-- api-linter: core::0142::time-field-names=disabled aip.dev/not-precedent: Not following linter rules. --).google.protobuf.Timestamp created_time = 4;- Returns:
- The createdTime.
-
getCreatedTimeOrBuilder
TimestampOrBuilder getCreatedTimeOrBuilder()
The date and time when the service was created. (-- api-linter: core::0142::time-field-names=disabled aip.dev/not-precedent: Not following linter rules. --).google.protobuf.Timestamp created_time = 4;
-
hasLastModifiedTime
boolean hasLastModifiedTime()
The date and time when the service was last modified. Will not be set if the service has never been modified. (-- api-linter: core::0142::time-field-names=disabled aip.dev/not-precedent: Not following linter rules. --).google.protobuf.Timestamp last_modified_time = 5;- Returns:
- Whether the lastModifiedTime field is set.
-
getLastModifiedTime
Timestamp getLastModifiedTime()
The date and time when the service was last modified. Will not be set if the service has never been modified. (-- api-linter: core::0142::time-field-names=disabled aip.dev/not-precedent: Not following linter rules. --).google.protobuf.Timestamp last_modified_time = 5;- Returns:
- The lastModifiedTime.
-
getLastModifiedTimeOrBuilder
TimestampOrBuilder getLastModifiedTimeOrBuilder()
The date and time when the service was last modified. Will not be set if the service has never been modified. (-- api-linter: core::0142::time-field-names=disabled aip.dev/not-precedent: Not following linter rules. --).google.protobuf.Timestamp last_modified_time = 5;
-
getUrlPrefix
java.lang.String getUrlPrefix()
Server exposed URL prefix for invocation of operations on this service. This doesn't include the protocol, hostname or port as the server does not know how it should be accessed publicly. The URL is stable in the face of service renames.
string url_prefix = 6;- Returns:
- The urlPrefix.
-
getUrlPrefixBytes
com.google.protobuf.ByteString getUrlPrefixBytes()
Server exposed URL prefix for invocation of operations on this service. This doesn't include the protocol, hostname or port as the server does not know how it should be accessed publicly. The URL is stable in the face of service renames.
string url_prefix = 6;- Returns:
- The bytes for urlPrefix.
-
-