All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.Page Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy