Interface AudienceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Audience,Audience.Builder
public interface AudienceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsAudienceMap(String key)The map of audience key to audience value.Map<String,String>getAudienceMap()Deprecated.intgetAudienceMapCount()The map of audience key to audience value.Map<String,String>getAudienceMapMap()The map of audience key to audience value.StringgetAudienceMapOrDefault(String key, String defaultValue)The map of audience key to audience value.StringgetAudienceMapOrThrow(String key)The map of audience key to audience value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAudienceMapCount
int getAudienceMapCount()
The map of audience key to audience value. The key is defined as the contract with control plane in the configuration. It is fixed string "audience_key". The value is URL of the receiving service that performs token authentication.
map<string, string> audience_map = 1;
-
containsAudienceMap
boolean containsAudienceMap(String key)
The map of audience key to audience value. The key is defined as the contract with control plane in the configuration. It is fixed string "audience_key". The value is URL of the receiving service that performs token authentication.
map<string, string> audience_map = 1;
-
getAudienceMap
@Deprecated Map<String,String> getAudienceMap()
Deprecated.UsegetAudienceMapMap()instead.
-
getAudienceMapMap
Map<String,String> getAudienceMapMap()
The map of audience key to audience value. The key is defined as the contract with control plane in the configuration. It is fixed string "audience_key". The value is URL of the receiving service that performs token authentication.
map<string, string> audience_map = 1;
-
getAudienceMapOrDefault
String getAudienceMapOrDefault(String key, String defaultValue)
The map of audience key to audience value. The key is defined as the contract with control plane in the configuration. It is fixed string "audience_key". The value is URL of the receiving service that performs token authentication.
map<string, string> audience_map = 1;
-
getAudienceMapOrThrow
String getAudienceMapOrThrow(String key)
The map of audience key to audience value. The key is defined as the contract with control plane in the configuration. It is fixed string "audience_key". The value is URL of the receiving service that performs token authentication.
map<string, string> audience_map = 1;
-
-