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