Interface X509ExtensionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
X509Extension
,X509Extension.Builder
public interface X509ExtensionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getCritical()
Required.ObjectId
getObjectId()
Required.ObjectIdOrBuilder
getObjectIdOrBuilder()
Required.com.google.protobuf.ByteString
getValue()
Required.boolean
hasObjectId()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasObjectId
boolean hasObjectId()
Required. The OID for this X.509 extension.
.google.cloud.security.privateca.v1beta1.ObjectId object_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the objectId field is set.
-
getObjectId
ObjectId getObjectId()
Required. The OID for this X.509 extension.
.google.cloud.security.privateca.v1beta1.ObjectId object_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The objectId.
-
getObjectIdOrBuilder
ObjectIdOrBuilder getObjectIdOrBuilder()
Required. The OID for this X.509 extension.
.google.cloud.security.privateca.v1beta1.ObjectId object_id = 1 [(.google.api.field_behavior) = REQUIRED];
-
getCritical
boolean getCritical()
Required. Indicates whether or not this extension is critical (i.e., if the client does not know how to handle this extension, the client should consider this to be an error).
bool critical = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The critical.
-
getValue
com.google.protobuf.ByteString getValue()
Required. The value of this X.509 extension.
bytes value = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The value.
-
-