com.azure.security.keyvault.secrets.implementation.models.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-security-keyvault-secrets Show documentation
Show all versions of azure-security-keyvault-secrets Show documentation
This module contains client library for Microsoft Azure KeyVault Secrets.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.security.keyvault.secrets.implementation.models;
import com.azure.core.annotation.Immutable;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/** The key vault server error. */
@Immutable
public final class Error implements JsonSerializable {
/*
* The error code.
*/
private String code;
/*
* The error message.
*/
private String message;
/*
* The key vault server error.
*/
private Error innerError;
/** Creates an instance of Error class. */
public Error() {}
/**
* Get the code property: The error code.
*
* @return the code value.
*/
public String getCode() {
return this.code;
}
/**
* Get the message property: The error message.
*
* @return the message value.
*/
public String getMessage() {
return this.message;
}
/**
* Get the innerError property: The key vault server error.
*
* @return the innerError value.
*/
public Error getInnerError() {
return this.innerError;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of Error from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of Error if the JsonReader was pointing to an instance of it, or null if it was pointing to
* JSON null.
* @throws IOException If an error occurs while reading the Error.
*/
public static Error fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(
reader -> {
Error deserializedError = new Error();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("code".equals(fieldName)) {
deserializedError.code = reader.getString();
} else if ("message".equals(fieldName)) {
deserializedError.message = reader.getString();
} else if ("innererror".equals(fieldName)) {
deserializedError.innerError = Error.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedError;
});
}
}