com.microsoft.azure.Page Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-client-runtime Show documentation
Show all versions of azure-client-runtime Show documentation
This package contains the basic runtime for AutoRest generated Azure Java clients.
The newest version!
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure;
import java.util.List;
/**
* Defines a page interface in Azure responses.
*
* @param the element type.
*/
public interface Page {
/**
* Gets the link to the next page.
*
* @return the link.
*/
String nextPageLink();
/**
* Gets the list of items.
*
* @return the list of items.
*/
List items();
}