Interface ComplianceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Compliance,Compliance.Builder
public interface ComplianceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetIds(int index)Policies within the standard or benchmark, for example, A.12.4.1com.google.protobuf.ByteStringgetIdsBytes(int index)Policies within the standard or benchmark, for example, A.12.4.1intgetIdsCount()Policies within the standard or benchmark, for example, A.12.4.1List<String>getIdsList()Policies within the standard or benchmark, for example, A.12.4.1StringgetStandard()Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.com.google.protobuf.ByteStringgetStandardBytes()Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.StringgetVersion()Version of the standard or benchmark, for example, 1.1com.google.protobuf.ByteStringgetVersionBytes()Version of the standard or benchmark, for example, 1.1-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStandard
String getStandard()
Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
string standard = 1;- Returns:
- The standard.
-
getStandardBytes
com.google.protobuf.ByteString getStandardBytes()
Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
string standard = 1;- Returns:
- The bytes for standard.
-
getVersion
String getVersion()
Version of the standard or benchmark, for example, 1.1
string version = 2;- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
Version of the standard or benchmark, for example, 1.1
string version = 2;- Returns:
- The bytes for version.
-
getIdsList
List<String> getIdsList()
Policies within the standard or benchmark, for example, A.12.4.1
repeated string ids = 3;- Returns:
- A list containing the ids.
-
getIdsCount
int getIdsCount()
Policies within the standard or benchmark, for example, A.12.4.1
repeated string ids = 3;- Returns:
- The count of ids.
-
getIds
String getIds(int index)
Policies within the standard or benchmark, for example, A.12.4.1
repeated string ids = 3;- Parameters:
index- The index of the element to return.- Returns:
- The ids at the given index.
-
getIdsBytes
com.google.protobuf.ByteString getIdsBytes(int index)
Policies within the standard or benchmark, for example, A.12.4.1
repeated string ids = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the ids at the given index.
-
-