![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphTokenIssuancePolicy 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.core.util.CoreUtils;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* tokenIssuancePolicy
*
* Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory
* entity types.
*/
@Fluent
public final class MicrosoftGraphTokenIssuancePolicy extends MicrosoftGraphStsPolicy {
/*
* Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory
* entity types.
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphTokenIssuancePolicy class.
*/
public MicrosoftGraphTokenIssuancePolicy() {
}
/**
* Get the additionalProperties property: Represents an Azure Active Directory object. The directoryObject type is
* the base type for many other directory entity types.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: Represents an Azure Active Directory object. The directoryObject type is
* the base type for many other directory entity types.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphTokenIssuancePolicy object itself.
*/
public MicrosoftGraphTokenIssuancePolicy withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withDefinition(List definition) {
super.withDefinition(definition);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withIsOrganizationDefault(Boolean isOrganizationDefault) {
super.withIsOrganizationDefault(isOrganizationDefault);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withAppliesTo(List appliesTo) {
super.withAppliesTo(appliesTo);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withDisplayName(String displayName) {
super.withDisplayName(displayName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withDeletedDateTime(OffsetDateTime deletedDateTime) {
super.withDeletedDateTime(deletedDateTime);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphTokenIssuancePolicy withId(String id) {
super.withId(id);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("id", id());
jsonWriter.writeStringField("deletedDateTime",
deletedDateTime() == null ? null : DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(deletedDateTime()));
jsonWriter.writeStringField("description", description());
jsonWriter.writeStringField("displayName", displayName());
jsonWriter.writeArrayField("definition", definition(), (writer, element) -> writer.writeString(element));
jsonWriter.writeBooleanField("isOrganizationDefault", isOrganizationDefault());
jsonWriter.writeArrayField("appliesTo", appliesTo(), (writer, element) -> writer.writeJson(element));
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphTokenIssuancePolicy from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphTokenIssuancePolicy 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 MicrosoftGraphTokenIssuancePolicy.
*/
public static MicrosoftGraphTokenIssuancePolicy fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphTokenIssuancePolicy deserializedMicrosoftGraphTokenIssuancePolicy
= new MicrosoftGraphTokenIssuancePolicy();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedMicrosoftGraphTokenIssuancePolicy.withId(reader.getString());
} else if ("deletedDateTime".equals(fieldName)) {
deserializedMicrosoftGraphTokenIssuancePolicy.withDeletedDateTime(reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString())));
} else if ("description".equals(fieldName)) {
deserializedMicrosoftGraphTokenIssuancePolicy.withDescription(reader.getString());
} else if ("displayName".equals(fieldName)) {
deserializedMicrosoftGraphTokenIssuancePolicy.withDisplayName(reader.getString());
} else if ("definition".equals(fieldName)) {
List definition = reader.readArray(reader1 -> reader1.getString());
deserializedMicrosoftGraphTokenIssuancePolicy.withDefinition(definition);
} else if ("isOrganizationDefault".equals(fieldName)) {
deserializedMicrosoftGraphTokenIssuancePolicy
.withIsOrganizationDefault(reader.getNullable(JsonReader::getBoolean));
} else if ("appliesTo".equals(fieldName)) {
List appliesTo
= reader.readArray(reader1 -> MicrosoftGraphDirectoryObjectInner.fromJson(reader1));
deserializedMicrosoftGraphTokenIssuancePolicy.withAppliesTo(appliesTo);
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphTokenIssuancePolicy.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphTokenIssuancePolicy;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy