Interface X509Parameters.CaOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
X509Parameters.CaOptions
,X509Parameters.CaOptions.Builder
- Enclosing class:
- X509Parameters
public static interface X509Parameters.CaOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getIsCa()
Optional.int
getMaxIssuerPathLength()
Optional.boolean
hasIsCa()
Optional.boolean
hasMaxIssuerPathLength()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasIsCa
boolean hasIsCa()
Optional. Refers to the "CA" X.509 extension, which is a boolean value. When this value is missing, the extension will be omitted from the CA certificate.
optional bool is_ca = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- Whether the isCa field is set.
-
getIsCa
boolean getIsCa()
Optional. Refers to the "CA" X.509 extension, which is a boolean value. When this value is missing, the extension will be omitted from the CA certificate.
optional bool is_ca = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The isCa.
-
hasMaxIssuerPathLength
boolean hasMaxIssuerPathLength()
Optional. Refers to the path length restriction X.509 extension. For a CA certificate, this value describes the depth of subordinate CA certificates that are allowed. If this value is less than 0, the request will fail. If this value is missing, the max path length will be omitted from the CA certificate.
optional int32 max_issuer_path_length = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- Whether the maxIssuerPathLength field is set.
-
getMaxIssuerPathLength
int getMaxIssuerPathLength()
Optional. Refers to the path length restriction X.509 extension. For a CA certificate, this value describes the depth of subordinate CA certificates that are allowed. If this value is less than 0, the request will fail. If this value is missing, the max path length will be omitted from the CA certificate.
optional int32 max_issuer_path_length = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The maxIssuerPathLength.
-
-