com.azure.messaging.eventgrid.systemevents.MediaJobError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
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;
import java.util.List;
/**
* Details of JobOutput errors.
*/
@Immutable
public final class MediaJobError implements JsonSerializable {
/*
* Error code describing the error.
*/
private MediaJobErrorCode code;
/*
* A human-readable language-dependent representation of the error.
*/
private String message;
/*
* Helps with categorization of errors.
*/
private MediaJobErrorCategory category;
/*
* Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via
* Azure Portal.
*/
private MediaJobRetry retry;
/*
* An array of details about specific errors that led to this reported error.
*/
private List details;
/**
* Creates an instance of MediaJobError class.
*/
public MediaJobError() {
}
/**
* Get the code property: Error code describing the error.
*
* @return the code value.
*/
public MediaJobErrorCode getCode() {
return this.code;
}
/**
* Get the message property: A human-readable language-dependent representation of the error.
*
* @return the message value.
*/
public String getMessage() {
return this.message;
}
/**
* Get the category property: Helps with categorization of errors.
*
* @return the category value.
*/
public MediaJobErrorCategory getCategory() {
return this.category;
}
/**
* Get the retry property: Indicates that it may be possible to retry the Job. If retry is unsuccessful, please
* contact Azure support via Azure Portal.
*
* @return the retry value.
*/
public MediaJobRetry getRetry() {
return this.retry;
}
/**
* Get the details property: An array of details about specific errors that led to this reported error.
*
* @return the details value.
*/
public List getDetails() {
return this.details;
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MediaJobError from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MediaJobError 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 MediaJobError.
*/
public static MediaJobError fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MediaJobError deserializedMediaJobError = new MediaJobError();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("code".equals(fieldName)) {
deserializedMediaJobError.code = MediaJobErrorCode.fromString(reader.getString());
} else if ("message".equals(fieldName)) {
deserializedMediaJobError.message = reader.getString();
} else if ("category".equals(fieldName)) {
deserializedMediaJobError.category = MediaJobErrorCategory.fromString(reader.getString());
} else if ("retry".equals(fieldName)) {
deserializedMediaJobError.retry = MediaJobRetry.fromString(reader.getString());
} else if ("details".equals(fieldName)) {
List details
= reader.readArray(reader1 -> MediaJobErrorDetail.fromJson(reader1));
deserializedMediaJobError.details = details;
} else {
reader.skipChildren();
}
}
return deserializedMediaJobError;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy