forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdministrativeUnitDeltaCollectionPage.java
More file actions
47 lines (40 loc) · 2.17 KB
/
Copy pathAdministrativeUnitDeltaCollectionPage.java
File metadata and controls
47 lines (40 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Template Source: BaseMethodCollectionPage.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.requests;
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.AdministrativeUnit;
import java.util.Arrays;
import java.util.EnumSet;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
import com.microsoft.graph.http.DeltaCollectionPage;
import com.microsoft.graph.requests.AdministrativeUnitDeltaCollectionRequestBuilder;
import com.microsoft.graph.requests.AdministrativeUnitDeltaCollectionPage;
import com.microsoft.graph.requests.AdministrativeUnitDeltaCollectionResponse;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Administrative Unit Delta Collection Page.
*/
public class AdministrativeUnitDeltaCollectionPage extends DeltaCollectionPage<AdministrativeUnit, AdministrativeUnitDeltaCollectionRequestBuilder> {
/**
* A collection page for AdministrativeUnit.
*
* @param response The serialized AdministrativeUnitDeltaCollectionResponse from the service
* @param builder The request builder for the next collection page
*/
public AdministrativeUnitDeltaCollectionPage(@Nonnull final AdministrativeUnitDeltaCollectionResponse response, @Nonnull final AdministrativeUnitDeltaCollectionRequestBuilder builder) {
super(response, builder);
}
/**
* Creates the collection page for AdministrativeUnitDelta
*
* @param pageContents the contents of this page
* @param nextRequestBuilder the request builder for the next page
*/
public AdministrativeUnitDeltaCollectionPage(@Nonnull final java.util.List<AdministrativeUnit> pageContents, @Nullable final AdministrativeUnitDeltaCollectionRequestBuilder nextRequestBuilder) {
super(pageContents, nextRequestBuilder);
}
}