All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.authorization.fluent.models.CollectionOfServicePrincipal Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Authorization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.44.0
Show 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.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 servicePrincipal.
 */
@Fluent
public final class CollectionOfServicePrincipal implements JsonSerializable {
    /*
     * The value property.
     */
    private List value;

    /*
     * The @odata.nextLink property.
     */
    private String odataNextLink;

    /*
     * Collection of servicePrincipal
     */
    private Map additionalProperties;

    /**
     * Creates an instance of CollectionOfServicePrincipal class.
     */
    public CollectionOfServicePrincipal() {
    }

    /**
     * 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 CollectionOfServicePrincipal object itself.
     */
    public CollectionOfServicePrincipal 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 CollectionOfServicePrincipal object itself.
     */
    public CollectionOfServicePrincipal withOdataNextLink(String odataNextLink) {
        this.odataNextLink = odataNextLink;
        return this;
    }

    /**
     * Get the additionalProperties property: Collection of servicePrincipal.
     * 
     * @return the additionalProperties value.
     */
    public Map additionalProperties() {
        return this.additionalProperties;
    }

    /**
     * Set the additionalProperties property: Collection of servicePrincipal.
     * 
     * @param additionalProperties the additionalProperties value to set.
     * @return the CollectionOfServicePrincipal object itself.
     */
    public CollectionOfServicePrincipal 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 CollectionOfServicePrincipal from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of CollectionOfServicePrincipal 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 CollectionOfServicePrincipal.
     */
    public static CollectionOfServicePrincipal fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            CollectionOfServicePrincipal deserializedCollectionOfServicePrincipal = new CollectionOfServicePrincipal();
            Map additionalProperties = null;
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("value".equals(fieldName)) {
                    List value
                        = reader.readArray(reader1 -> MicrosoftGraphServicePrincipalInner.fromJson(reader1));
                    deserializedCollectionOfServicePrincipal.value = value;
                } else if ("@odata.nextLink".equals(fieldName)) {
                    deserializedCollectionOfServicePrincipal.odataNextLink = reader.getString();
                } else {
                    if (additionalProperties == null) {
                        additionalProperties = new LinkedHashMap<>();
                    }

                    additionalProperties.put(fieldName, reader.readUntyped());
                }
            }
            deserializedCollectionOfServicePrincipal.additionalProperties = additionalProperties;

            return deserializedCollectionOfServicePrincipal;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy