com.azure.resourcemanager.apimanagement.models.OAuth2AuthenticationSettingsContract Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-apimanagement Show documentation
Show all versions of azure-resourcemanager-apimanagement Show documentation
This package contains Microsoft Azure SDK for ApiManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. ApiManagement Client. Package tag package-2022-08.
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.resourcemanager.apimanagement.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;
/**
* API OAuth2 Authentication settings details.
*/
@Fluent
public final class OAuth2AuthenticationSettingsContract
implements JsonSerializable {
/*
* OAuth authorization server identifier.
*/
private String authorizationServerId;
/*
* operations scope.
*/
private String scope;
/**
* Creates an instance of OAuth2AuthenticationSettingsContract class.
*/
public OAuth2AuthenticationSettingsContract() {
}
/**
* Get the authorizationServerId property: OAuth authorization server identifier.
*
* @return the authorizationServerId value.
*/
public String authorizationServerId() {
return this.authorizationServerId;
}
/**
* Set the authorizationServerId property: OAuth authorization server identifier.
*
* @param authorizationServerId the authorizationServerId value to set.
* @return the OAuth2AuthenticationSettingsContract object itself.
*/
public OAuth2AuthenticationSettingsContract withAuthorizationServerId(String authorizationServerId) {
this.authorizationServerId = authorizationServerId;
return this;
}
/**
* Get the scope property: operations scope.
*
* @return the scope value.
*/
public String scope() {
return this.scope;
}
/**
* Set the scope property: operations scope.
*
* @param scope the scope value to set.
* @return the OAuth2AuthenticationSettingsContract object itself.
*/
public OAuth2AuthenticationSettingsContract withScope(String scope) {
this.scope = scope;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("authorizationServerId", this.authorizationServerId);
jsonWriter.writeStringField("scope", this.scope);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of OAuth2AuthenticationSettingsContract from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of OAuth2AuthenticationSettingsContract 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 OAuth2AuthenticationSettingsContract.
*/
public static OAuth2AuthenticationSettingsContract fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
OAuth2AuthenticationSettingsContract deserializedOAuth2AuthenticationSettingsContract
= new OAuth2AuthenticationSettingsContract();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("authorizationServerId".equals(fieldName)) {
deserializedOAuth2AuthenticationSettingsContract.authorizationServerId = reader.getString();
} else if ("scope".equals(fieldName)) {
deserializedOAuth2AuthenticationSettingsContract.scope = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedOAuth2AuthenticationSettingsContract;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy