com.microsoft.azure.keyvault.models.custom.CertificateBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-keyvault Show documentation
Show all versions of azure-keyvault Show documentation
This library has been replaced by new Azure SDKs, you can read about them at https://aka.ms/azsdkvalueprop. The latest libraries to interact with the Azure Key Vault service are:
(1) https://search.maven.org/artifact/com.azure/azure-security-keyvault-keys.
(2) https://search.maven.org/artifact/com.azure/azure-security-keyvault-secrets.
(3) https://search.maven.org/artifact/com.azure/azure-security-keyvault-certificates.
It is recommended that you move to the new package.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.azure.keyvault.models.custom;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.microsoft.azure.keyvault.CertificateIdentifier;
import com.microsoft.azure.keyvault.KeyIdentifier;
import com.microsoft.azure.keyvault.SecretIdentifier;
import java.io.IOException;
/**
* A certificate bundle consists of a certificate (X509) plus its attributes.
*/
public class CertificateBundle {
/**
* The certificate id.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/**
* The key id.
*/
@JsonProperty(value = "kid", access = JsonProperty.Access.WRITE_ONLY)
private String kid;
/**
* The secret id.
*/
@JsonProperty(value = "sid", access = JsonProperty.Access.WRITE_ONLY)
private String sid;
/**
* Get the id value.
*
* @return the id value
*/
public String id() {
return this.id;
}
/**
* Get the kid value.
*
* @return the kid value
*/
public String kid() {
return this.kid;
}
/**
* Get the sid value.
*
* @return the sid value
*/
public String sid() {
return this.sid;
}
/**
* The certificate identifier.
* @return certificate identifier
*/
public CertificateIdentifier certificateIdentifier() {
if (id() == null || id().isEmpty()) {
return null;
}
return new CertificateIdentifier(id());
}
/**
* The secret identifier.
* @return secret identifier
*/
public SecretIdentifier secretIdentifier() {
if (sid() == null || sid().isEmpty()) {
return null;
}
return new SecretIdentifier(sid());
}
/**
* The key identifier.
* @return key identifier
*/
public KeyIdentifier keyIdentifier() {
if (kid() == null || kid().isEmpty()) {
return null;
}
return new KeyIdentifier(kid());
}
@Override
public String toString() {
ObjectMapper mapper = new ObjectMapper();
try {
return mapper.writeValueAsString(this);
} catch (JsonGenerationException e) {
throw new IllegalStateException(e);
} catch (JsonMappingException e) {
throw new IllegalStateException(e);
} catch (IOException e) {
throw new IllegalStateException(e);
}
}
}