Class PageImpl<T>
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.PageImpl<T>
-
- Type Parameters:
T
- type of Azure resource
- All Implemented Interfaces:
com.microsoft.azure.Page<T>
public class PageImpl<T> extends Object implements com.microsoft.azure.Page<T>
An instance of this class defines a page of Azure resources and a link to get the next page of resources, if any.
-
-
Constructor Summary
Constructors Constructor Description PageImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<T>
items()
Gets the list of items.String
nextPageLink()
Gets the link to the next page.PageImpl<T>
setItems(List<T> items)
Sets the list of items.PageImpl<T>
setNextPageLink(String nextPageLink)
Sets the link to the next page.
-
-
-
Method Detail
-
nextPageLink
public String nextPageLink()
Gets the link to the next page.- Specified by:
nextPageLink
in interfacecom.microsoft.azure.Page<T>
- Returns:
- the link to the next page.
-
setNextPageLink
public PageImpl<T> setNextPageLink(String nextPageLink)
Sets the link to the next page.- Parameters:
nextPageLink
- the link to the next page.- Returns:
- this Page object itself.
-
-