Interface IOSKeySettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IOSKeySettings
,IOSKeySettings.Builder
public interface IOSKeySettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAllowAllBundleIds()
If set to true, allowed_bundle_ids are not enforced.String
getAllowedBundleIds(int index)
iOS bundle ids of apps allowed to use the key.com.google.protobuf.ByteString
getAllowedBundleIdsBytes(int index)
iOS bundle ids of apps allowed to use the key.int
getAllowedBundleIdsCount()
iOS bundle ids of apps allowed to use the key.List<String>
getAllowedBundleIdsList()
iOS bundle ids of apps allowed to use the key.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAllowAllBundleIds
boolean getAllowAllBundleIds()
If set to true, allowed_bundle_ids are not enforced.
bool allow_all_bundle_ids = 2;
- Returns:
- The allowAllBundleIds.
-
getAllowedBundleIdsList
List<String> getAllowedBundleIdsList()
iOS bundle ids of apps allowed to use the key. Example: 'com.companyname.productname.appname'
repeated string allowed_bundle_ids = 1;
- Returns:
- A list containing the allowedBundleIds.
-
getAllowedBundleIdsCount
int getAllowedBundleIdsCount()
iOS bundle ids of apps allowed to use the key. Example: 'com.companyname.productname.appname'
repeated string allowed_bundle_ids = 1;
- Returns:
- The count of allowedBundleIds.
-
getAllowedBundleIds
String getAllowedBundleIds(int index)
iOS bundle ids of apps allowed to use the key. Example: 'com.companyname.productname.appname'
repeated string allowed_bundle_ids = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The allowedBundleIds at the given index.
-
getAllowedBundleIdsBytes
com.google.protobuf.ByteString getAllowedBundleIdsBytes(int index)
iOS bundle ids of apps allowed to use the key. Example: 'com.companyname.productname.appname'
repeated string allowed_bundle_ids = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the allowedBundleIds at the given index.
-
-