ConfigurationSettingPage.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.data.appconfiguration.implementation;
import com.azure.core.util.IterableStream;
import com.azure.data.appconfiguration.models.ConfigurationSetting;
import com.azure.core.http.rest.Page;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* A page of Azure App Configuration {@link ConfigurationSetting} resources and a link to get the next page of
* resources, if any.
*/
public final class ConfigurationSettingPage implements Page<ConfigurationSetting> {
@JsonProperty("@nextLink")
private String continuationToken;
@JsonProperty("items")
private List<ConfigurationSetting> items;
/**
* Gets the link to the next page.
*
* @return The link to the next page or {@code null} if there are no more resources to fetch.
*/
@Override
public String getContinuationToken() {
return this.continuationToken;
}
/**
* Gets the iterable stream of {@link ConfigurationSetting ConfigurationSettings} on this page.
*
* @return The iterable stream of {@link ConfigurationSetting ConfigurationSettings}.
*/
@Override
public IterableStream<ConfigurationSetting> getElements() {
return IterableStream.of(items);
}
}