com.azure.resourcemanager.authorization.fluent.models.CollectionOfApplication Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.authorization.fluent.models;
import com.azure.core.annotation.Fluent;
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.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Collection of application.
*/
@Fluent
public final class CollectionOfApplication implements JsonSerializable {
/*
* The value property.
*/
private List value;
/*
* The @odata.nextLink property.
*/
private String odataNextLink;
/*
* Collection of application
*/
private Map additionalProperties;
/**
* Creates an instance of CollectionOfApplication class.
*/
public CollectionOfApplication() {
}
/**
* Get the value property: The value property.
*
* @return the value value.
*/
public List value() {
return this.value;
}
/**
* Set the value property: The value property.
*
* @param value the value value to set.
* @return the CollectionOfApplication object itself.
*/
public CollectionOfApplication withValue(List value) {
this.value = value;
return this;
}
/**
* Get the odataNextLink property: The @odata.nextLink property.
*
* @return the odataNextLink value.
*/
public String odataNextLink() {
return this.odataNextLink;
}
/**
* Set the odataNextLink property: The @odata.nextLink property.
*
* @param odataNextLink the odataNextLink value to set.
* @return the CollectionOfApplication object itself.
*/
public CollectionOfApplication withOdataNextLink(String odataNextLink) {
this.odataNextLink = odataNextLink;
return this;
}
/**
* Get the additionalProperties property: Collection of application.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: Collection of application.
*
* @param additionalProperties the additionalProperties value to set.
* @return the CollectionOfApplication object itself.
*/
public CollectionOfApplication withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (value() != null) {
value().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("value", this.value, (writer, element) -> writer.writeJson(element));
jsonWriter.writeStringField("@odata.nextLink", this.odataNextLink);
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of CollectionOfApplication from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of CollectionOfApplication 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 CollectionOfApplication.
*/
public static CollectionOfApplication fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
CollectionOfApplication deserializedCollectionOfApplication = new CollectionOfApplication();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("value".equals(fieldName)) {
List value
= reader.readArray(reader1 -> MicrosoftGraphApplicationInner.fromJson(reader1));
deserializedCollectionOfApplication.value = value;
} else if ("@odata.nextLink".equals(fieldName)) {
deserializedCollectionOfApplication.odataNextLink = reader.getString();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedCollectionOfApplication.additionalProperties = additionalProperties;
return deserializedCollectionOfApplication;
});
}
}