/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 * Changes may cause incorrect behavior and will be lost if the code is * regenerated. */ package com.microsoft.azure.keyvault.models; import com.fasterxml.jackson.annotation.JsonProperty; /** * The credentials to be used for the certificate issuer. */ public class IssuerCredentials { /** * The user name/account name/account id. */ @JsonProperty(value = "account_id") private String accountId; /** * The password/secret/account key. */ @JsonProperty(value = "pwd") private String password; /** * Get the accountId value. * * @return the accountId value */ public String accountId() { return this.accountId; } /** * Set the accountId value. * * @param accountId the accountId value to set * @return the IssuerCredentials object itself. */ public IssuerCredentials withAccountId(String accountId) { this.accountId = accountId; return this; } /** * Get the password value. * * @return the password value */ public String password() { return this.password; } /** * Set the password value. * * @param password the password value to set * @return the IssuerCredentials object itself. */ public IssuerCredentials withPassword(String password) { this.password = password; return this; } }