Package com.microsoft.graph.models
Class CertificateAuthority
java.lang.Object
com.microsoft.graph.models.CertificateAuthority
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class CertificateAuthority
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Certificate Authority.
-
Field Summary
FieldsModifier and TypeFieldDescriptionbyte[]The Certificate.The Certificate Revocation List Url.The Delta Certificate Revocation List Url.The Is Root Authority.The Issuer.The Issuer Ski.the OData type of the object as returned by the service -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
certificate
@SerializedName(value="certificate", alternate="Certificate") @Expose @Nullable public byte[] certificateThe Certificate. Required. The base64 encoded string representing the public certificate. -
certificateRevocationListUrl
@SerializedName(value="certificateRevocationListUrl", alternate="CertificateRevocationListUrl") @Expose @Nullable public String certificateRevocationListUrlThe Certificate Revocation List Url. The URL of the certificate revocation list. -
deltaCertificateRevocationListUrl
@SerializedName(value="deltaCertificateRevocationListUrl", alternate="DeltaCertificateRevocationListUrl") @Expose @Nullable public String deltaCertificateRevocationListUrlThe Delta Certificate Revocation List Url. The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. -
isRootAuthority
@SerializedName(value="isRootAuthority", alternate="IsRootAuthority") @Expose @Nullable public Boolean isRootAuthorityThe Is Root Authority. Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. -
issuer
The Issuer. The issuer of the certificate, calculated from the certificate value. Read-only. -
issuerSki
The Issuer Ski. The subject key identifier of the certificate, calculated from the certificate value. Read-only.
-
-
Constructor Details
-
CertificateAuthority
public CertificateAuthority()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-