Package com.microsoft.graph.requests
Class PermissionCollectionPage
java.lang.Object
com.microsoft.graph.http.BaseCollectionPage<Permission,PermissionCollectionRequestBuilder>
com.microsoft.graph.requests.PermissionCollectionPage
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class PermissionCollectionPage
extends com.microsoft.graph.http.BaseCollectionPage<Permission,PermissionCollectionRequestBuilder>
The class for the Permission Collection Page.
-
Constructor Summary
ConstructorsConstructorDescriptionPermissionCollectionPage
(PermissionCollectionResponse response, PermissionCollectionRequestBuilder builder) A collection page for PermissionPermissionCollectionPage
(List<Permission> pageContents, PermissionCollectionRequestBuilder nextRequestBuilder) Creates the collection page for Permission -
Method Summary
Methods inherited from class com.microsoft.graph.http.BaseCollectionPage
additionalDataManager, getCount, getCurrentPage, getNextPage, setRawObject
-
Constructor Details
-
PermissionCollectionPage
public PermissionCollectionPage(@Nonnull PermissionCollectionResponse response, @Nonnull PermissionCollectionRequestBuilder builder) A collection page for Permission- Parameters:
response
- the serialized PermissionCollectionResponse from the servicebuilder
- the request builder for the next collection page
-
PermissionCollectionPage
public PermissionCollectionPage(@Nonnull List<Permission> pageContents, @Nullable PermissionCollectionRequestBuilder nextRequestBuilder) Creates the collection page for Permission- Parameters:
pageContents
- the contents of this pagenextRequestBuilder
- the request builder for the next page
-