com.microsoft.windowsazure.management.models.ManagementCertificateGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-svc-mgmt Show documentation
Show all versions of azure-svc-mgmt Show documentation
This package contains Microsoft Azure Management SDK.
/**
*
* Copyright (c) Microsoft and contributors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
// Warning: This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if the
// code is regenerated.
package com.microsoft.windowsazure.management.models;
import com.microsoft.windowsazure.core.OperationResponse;
import java.util.Calendar;
/**
* The Get Management Certificate operation response.
*/
public class ManagementCertificateGetResponse extends OperationResponse {
private Calendar created;
/**
* Optional. The time that the management certificate was created, in UTC.
* @return The Created value.
*/
public Calendar getCreated() {
return this.created;
}
/**
* Optional. The time that the management certificate was created, in UTC.
* @param createdValue The Created value.
*/
public void setCreated(final Calendar createdValue) {
this.created = createdValue;
}
private byte[] data;
/**
* Optional. A base-64 representation of the raw data contained in the
* management certificate, in cer format.
* @return The Data value.
*/
public byte[] getData() {
return this.data;
}
/**
* Optional. A base-64 representation of the raw data contained in the
* management certificate, in cer format.
* @param dataValue The Data value.
*/
public void setData(final byte[] dataValue) {
this.data = dataValue;
}
private byte[] publicKey;
/**
* Optional. A base-64 representation of the management certificate public
* key.
* @return The PublicKey value.
*/
public byte[] getPublicKey() {
return this.publicKey;
}
/**
* Optional. A base-64 representation of the management certificate public
* key.
* @param publicKeyValue The PublicKey value.
*/
public void setPublicKey(final byte[] publicKeyValue) {
this.publicKey = publicKeyValue;
}
private String thumbprint;
/**
* Optional. The thumbprint that uniquely identifies the management
* certificate. This thumbprint is the same value as the one specified by
* the request URI.
* @return The Thumbprint value.
*/
public String getThumbprint() {
return this.thumbprint;
}
/**
* Optional. The thumbprint that uniquely identifies the management
* certificate. This thumbprint is the same value as the one specified by
* the request URI.
* @param thumbprintValue The Thumbprint value.
*/
public void setThumbprint(final String thumbprintValue) {
this.thumbprint = thumbprintValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy