Package io.temporal.api.nexus.v1
Interface IncomingServiceSpecOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IncomingServiceSpec,IncomingServiceSpec.Builder
@Generated(value="protoc", comments="annotations:IncomingServiceSpecOrBuilder.java.pb.meta") public interface IncomingServiceSpecOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsMetadata(java.lang.String key)Generic service metadata that is available to the server's authorizer.java.util.Map<java.lang.String,Any>getMetadata()Deprecated.intgetMetadataCount()Generic service metadata that is available to the server's authorizer.java.util.Map<java.lang.String,Any>getMetadataMap()Generic service metadata that is available to the server's authorizer.AnygetMetadataOrDefault(java.lang.String key, Any defaultValue)Generic service metadata that is available to the server's authorizer.AnygetMetadataOrThrow(java.lang.String key)Generic service metadata that is available to the server's authorizer.java.lang.StringgetName()Service name, unique for this cluster.com.google.protobuf.ByteStringgetNameBytes()Service name, unique for this cluster.java.lang.StringgetNamespace()Namespace to route requests to.com.google.protobuf.ByteStringgetNamespaceBytes()Namespace to route requests to.java.lang.StringgetTaskQueue()Task queue to route requests to.com.google.protobuf.ByteStringgetTaskQueueBytes()Task queue to route requests to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Service name, unique for this cluster. Must match `[a-zA-Z_][a-zA-Z0-9_]*`.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Service name, unique for this cluster. Must match `[a-zA-Z_][a-zA-Z0-9_]*`.
string name = 1;- Returns:
- The bytes for name.
-
getNamespace
java.lang.String getNamespace()
Namespace to route requests to.
string namespace = 2;- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
Namespace to route requests to.
string namespace = 2;- Returns:
- The bytes for namespace.
-
getTaskQueue
java.lang.String getTaskQueue()
Task queue to route requests to.
string task_queue = 3;- Returns:
- The taskQueue.
-
getTaskQueueBytes
com.google.protobuf.ByteString getTaskQueueBytes()
Task queue to route requests to.
string task_queue = 3;- Returns:
- The bytes for taskQueue.
-
getMetadataCount
int getMetadataCount()
Generic service metadata that is available to the server's authorizer.
map<string, .google.protobuf.Any> metadata = 4;
-
containsMetadata
boolean containsMetadata(java.lang.String key)
Generic service metadata that is available to the server's authorizer.
map<string, .google.protobuf.Any> metadata = 4;
-
getMetadata
@Deprecated java.util.Map<java.lang.String,Any> getMetadata()
Deprecated.UsegetMetadataMap()instead.
-
getMetadataMap
java.util.Map<java.lang.String,Any> getMetadataMap()
Generic service metadata that is available to the server's authorizer.
map<string, .google.protobuf.Any> metadata = 4;
-
getMetadataOrDefault
Any getMetadataOrDefault(java.lang.String key, Any defaultValue)
Generic service metadata that is available to the server's authorizer.
map<string, .google.protobuf.Any> metadata = 4;
-
getMetadataOrThrow
Any getMetadataOrThrow(java.lang.String key)
Generic service metadata that is available to the server's authorizer.
map<string, .google.protobuf.Any> metadata = 4;
-
-