com.azure.resourcemanager.servicebus.models.SBClientAffineProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicebus Show documentation
Show all versions of azure-resourcemanager-servicebus Show documentation
This package contains Microsoft Azure ServiceBus Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicebus.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;
/**
* Properties specific to client affine subscriptions.
*/
@Fluent
public final class SBClientAffineProperties implements JsonSerializable {
/*
* Indicates the Client ID of the application that created the client-affine subscription.
*/
private String clientId;
/*
* For client-affine subscriptions, this value indicates whether the subscription is durable or not.
*/
private Boolean isDurable;
/*
* For client-affine subscriptions, this value indicates whether the subscription is shared or not.
*/
private Boolean isShared;
/**
* Creates an instance of SBClientAffineProperties class.
*/
public SBClientAffineProperties() {
}
/**
* Get the clientId property: Indicates the Client ID of the application that created the client-affine
* subscription.
*
* @return the clientId value.
*/
public String clientId() {
return this.clientId;
}
/**
* Set the clientId property: Indicates the Client ID of the application that created the client-affine
* subscription.
*
* @param clientId the clientId value to set.
* @return the SBClientAffineProperties object itself.
*/
public SBClientAffineProperties withClientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Get the isDurable property: For client-affine subscriptions, this value indicates whether the subscription is
* durable or not.
*
* @return the isDurable value.
*/
public Boolean isDurable() {
return this.isDurable;
}
/**
* Set the isDurable property: For client-affine subscriptions, this value indicates whether the subscription is
* durable or not.
*
* @param isDurable the isDurable value to set.
* @return the SBClientAffineProperties object itself.
*/
public SBClientAffineProperties withIsDurable(Boolean isDurable) {
this.isDurable = isDurable;
return this;
}
/**
* Get the isShared property: For client-affine subscriptions, this value indicates whether the subscription is
* shared or not.
*
* @return the isShared value.
*/
public Boolean isShared() {
return this.isShared;
}
/**
* Set the isShared property: For client-affine subscriptions, this value indicates whether the subscription is
* shared or not.
*
* @param isShared the isShared value to set.
* @return the SBClientAffineProperties object itself.
*/
public SBClientAffineProperties withIsShared(Boolean isShared) {
this.isShared = isShared;
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("clientId", this.clientId);
jsonWriter.writeBooleanField("isDurable", this.isDurable);
jsonWriter.writeBooleanField("isShared", this.isShared);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SBClientAffineProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SBClientAffineProperties 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 SBClientAffineProperties.
*/
public static SBClientAffineProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SBClientAffineProperties deserializedSBClientAffineProperties = new SBClientAffineProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("clientId".equals(fieldName)) {
deserializedSBClientAffineProperties.clientId = reader.getString();
} else if ("isDurable".equals(fieldName)) {
deserializedSBClientAffineProperties.isDurable = reader.getNullable(JsonReader::getBoolean);
} else if ("isShared".equals(fieldName)) {
deserializedSBClientAffineProperties.isShared = reader.getNullable(JsonReader::getBoolean);
} else {
reader.skipChildren();
}
}
return deserializedSBClientAffineProperties;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy