Interface AndroidKeySettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AndroidKeySettings,AndroidKeySettings.Builder
public interface AndroidKeySettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAllowAllPackageNames()If set to true, allowed_package_names are not enforced.StringgetAllowedPackageNames(int index)Android package names of apps allowed to use the key.com.google.protobuf.ByteStringgetAllowedPackageNamesBytes(int index)Android package names of apps allowed to use the key.intgetAllowedPackageNamesCount()Android package names of apps allowed to use the key.List<String>getAllowedPackageNamesList()Android package names 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
-
getAllowAllPackageNames
boolean getAllowAllPackageNames()
If set to true, allowed_package_names are not enforced.
bool allow_all_package_names = 2;- Returns:
- The allowAllPackageNames.
-
getAllowedPackageNamesList
List<String> getAllowedPackageNamesList()
Android package names of apps allowed to use the key. Example: 'com.companyname.appname'
repeated string allowed_package_names = 1;- Returns:
- A list containing the allowedPackageNames.
-
getAllowedPackageNamesCount
int getAllowedPackageNamesCount()
Android package names of apps allowed to use the key. Example: 'com.companyname.appname'
repeated string allowed_package_names = 1;- Returns:
- The count of allowedPackageNames.
-
getAllowedPackageNames
String getAllowedPackageNames(int index)
Android package names of apps allowed to use the key. Example: 'com.companyname.appname'
repeated string allowed_package_names = 1;- Parameters:
index- The index of the element to return.- Returns:
- The allowedPackageNames at the given index.
-
getAllowedPackageNamesBytes
com.google.protobuf.ByteString getAllowedPackageNamesBytes(int index)
Android package names of apps allowed to use the key. Example: 'com.companyname.appname'
repeated string allowed_package_names = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the allowedPackageNames at the given index.
-
-