DomainCollection Class

  • java.lang.Object
    • com.azure.resourcemanager.appservice.models.DomainCollection

Implements

public final class DomainCollection
implements JsonSerializable<DomainCollection>

Collection of domains.

Constructor Summary

Constructor Description
DomainCollection()

Creates an instance of DomainCollection class.

Method Summary

Modifier and Type Method and Description
static DomainCollection fromJson(JsonReader jsonReader)

Reads an instance of DomainCollection from the JsonReader.

String nextLink()

Get the nextLink property: The link to the next page of items.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

List<DomainInner> value()

Get the value property: The Domain items on this page.

DomainCollection withNextLink(String nextLink)

Set the nextLink property: The link to the next page of items.

DomainCollection withValue(List<DomainInner> value)

Set the value property: The Domain items on this page.

Methods inherited from java.lang.Object

Constructor Details

DomainCollection

public DomainCollection()

Creates an instance of DomainCollection class.

Method Details

fromJson

public static DomainCollection fromJson(JsonReader jsonReader)

Reads an instance of DomainCollection from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of DomainCollection if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

nextLink

public String nextLink()

Get the nextLink property: The link to the next page of items.

Returns:

the nextLink value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

value

public List<DomainInner> value()

Get the value property: The Domain items on this page.

Returns:

the value value.

withNextLink

public DomainCollection withNextLink(String nextLink)

Set the nextLink property: The link to the next page of items.

Parameters:

nextLink - the nextLink value to set.

Returns:

the DomainCollection object itself.

withValue

public DomainCollection withValue(List<DomainInner> value)

Set the value property: The Domain items on this page.

Parameters:

value - the value value to set.

Returns:

the DomainCollection object itself.

Applies to