![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphDelegatedPermissionClassification 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.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* delegatedPermissionClassification.
*/
@Fluent
public final class MicrosoftGraphDelegatedPermissionClassification extends MicrosoftGraphEntity {
/*
* permissionClassificationType
*/
private MicrosoftGraphPermissionClassificationType classification;
/*
* The unique identifier (id) for the delegated permission listed in the oauth2PermissionScopes collection of the
* servicePrincipal. Required on create. Does not support $filter.
*/
private String permissionId;
/*
* The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the
* servicePrincipal. Does not support $filter.
*/
private String permissionName;
/*
* delegatedPermissionClassification
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphDelegatedPermissionClassification class.
*/
public MicrosoftGraphDelegatedPermissionClassification() {
}
/**
* Get the classification property: permissionClassificationType.
*
* @return the classification value.
*/
public MicrosoftGraphPermissionClassificationType classification() {
return this.classification;
}
/**
* Set the classification property: permissionClassificationType.
*
* @param classification the classification value to set.
* @return the MicrosoftGraphDelegatedPermissionClassification object itself.
*/
public MicrosoftGraphDelegatedPermissionClassification
withClassification(MicrosoftGraphPermissionClassificationType classification) {
this.classification = classification;
return this;
}
/**
* Get the permissionId property: The unique identifier (id) for the delegated permission listed in the
* oauth2PermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter.
*
* @return the permissionId value.
*/
public String permissionId() {
return this.permissionId;
}
/**
* Set the permissionId property: The unique identifier (id) for the delegated permission listed in the
* oauth2PermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter.
*
* @param permissionId the permissionId value to set.
* @return the MicrosoftGraphDelegatedPermissionClassification object itself.
*/
public MicrosoftGraphDelegatedPermissionClassification withPermissionId(String permissionId) {
this.permissionId = permissionId;
return this;
}
/**
* Get the permissionName property: The claim value (value) for the delegated permission listed in the
* oauth2PermissionScopes collection of the servicePrincipal. Does not support $filter.
*
* @return the permissionName value.
*/
public String permissionName() {
return this.permissionName;
}
/**
* Set the permissionName property: The claim value (value) for the delegated permission listed in the
* oauth2PermissionScopes collection of the servicePrincipal. Does not support $filter.
*
* @param permissionName the permissionName value to set.
* @return the MicrosoftGraphDelegatedPermissionClassification object itself.
*/
public MicrosoftGraphDelegatedPermissionClassification withPermissionName(String permissionName) {
this.permissionName = permissionName;
return this;
}
/**
* Get the additionalProperties property: delegatedPermissionClassification.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: delegatedPermissionClassification.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphDelegatedPermissionClassification object itself.
*/
public MicrosoftGraphDelegatedPermissionClassification
withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MicrosoftGraphDelegatedPermissionClassification 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("classification",
this.classification == null ? null : this.classification.toString());
jsonWriter.writeStringField("permissionId", this.permissionId);
jsonWriter.writeStringField("permissionName", this.permissionName);
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphDelegatedPermissionClassification from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphDelegatedPermissionClassification 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 MicrosoftGraphDelegatedPermissionClassification.
*/
public static MicrosoftGraphDelegatedPermissionClassification fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphDelegatedPermissionClassification deserializedMicrosoftGraphDelegatedPermissionClassification
= new MicrosoftGraphDelegatedPermissionClassification();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedMicrosoftGraphDelegatedPermissionClassification.withId(reader.getString());
} else if ("classification".equals(fieldName)) {
deserializedMicrosoftGraphDelegatedPermissionClassification.classification
= MicrosoftGraphPermissionClassificationType.fromString(reader.getString());
} else if ("permissionId".equals(fieldName)) {
deserializedMicrosoftGraphDelegatedPermissionClassification.permissionId = reader.getString();
} else if ("permissionName".equals(fieldName)) {
deserializedMicrosoftGraphDelegatedPermissionClassification.permissionName = reader.getString();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphDelegatedPermissionClassification.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphDelegatedPermissionClassification;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy