This repository was archived by the owner on Jan 6, 2026. It is now read-only.
forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseCollectionRequest.java
More file actions
210 lines (188 loc) · 6.39 KB
/
Copy pathBaseCollectionRequest.java
File metadata and controls
210 lines (188 loc) · 6.39 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// ------------------------------------------------------------------------------
// Copyright (c) 2017 Microsoft Corporation
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sub-license, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ------------------------------------------------------------------------------
package com.microsoft.graph.http;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.options.FunctionOption;
import com.microsoft.graph.options.HeaderOption;
import com.microsoft.graph.options.Option;
import com.microsoft.graph.options.QueryOption;
import java.net.URL;
import java.util.List;
/**
* A request against a collection
*
* @param <T1> the raw response class returned by the service
* @param <T2> the class of the collection page
*/
public abstract class BaseCollectionRequest<T1, T2> implements IHttpRequest {
/**
* The base request for this collection request
*/
private final BaseRequest baseRequest;
/**
* The class for the response
*/
private final Class<T1> responseClass;
/**
* The class for the collection page
*/
private final Class<T2> collectionPageClass;
/**
* Create the collection request
*
* @param requestUrl the URL to make the request against
* @param client the client which can issue the request
* @param options the options for this request
* @param responseClass the class for the response
* @param collectionPageClass the class for the collection page
*/
public BaseCollectionRequest(final String requestUrl,
final IBaseClient client,
final List<? extends Option> options,
final Class<T1> responseClass,
final Class<T2> collectionPageClass) {
this.responseClass = responseClass;
this.collectionPageClass = collectionPageClass;
baseRequest = new BaseRequest(requestUrl, client, options, responseClass) {
};
}
/**
* Send this request
*
* @return the response object
* @throws ClientException an exception occurs if there was an error while the request was sent
*/
protected T1 send() throws ClientException {
baseRequest.setHttpMethod(HttpMethod.GET);
return baseRequest.getClient().getHttpProvider().send(this, responseClass, /* serialization object */ null);
}
/**
* Posts this request
*
* @param serializedObject the object to serialize as the body
* @param <T1> the type of the callback result
* @param <T2> the type of the serialized body
* @return the response object
* @throws ClientException an exception occurs if there was an error while the request was sent
*/
@SuppressWarnings("unchecked")
protected <T1, T2> T1 post(final T2 serializedObject) throws ClientException {
baseRequest.setHttpMethod(HttpMethod.POST);
return (T1) baseRequest.getClient().getHttpProvider().send(this, responseClass, serializedObject);
}
/**
* Gets the request URL
*
* @return the request URL
*/
@Override
public URL getRequestUrl() {
return baseRequest.getRequestUrl();
}
/**
* Gets the HTTP method
*
* @return the HTTP method
*/
@Override
public HttpMethod getHttpMethod() {
return baseRequest.getHttpMethod();
}
/**
* Gets the headers
*
* @return the headers
*/
@Override
public List<HeaderOption> getHeaders() {
return baseRequest.getHeaders();
}
/**
* Adds a header to this request
*
* @param header the name of the header
* @param value the value of the header
*/
@Override
public void addHeader(final String header, final String value) {
baseRequest.addHeader(header, value);
}
/**
* Sets useCaches parameter to cache the response
*
* @param useCaches the value of useCaches
*/
@Override
public void setUseCaches(boolean useCaches) {
baseRequest.setUseCaches(useCaches);
}
/**
* Gets useCaches parameter
*
* @return the value of useCaches
*/
@Override
public boolean getUseCaches() {
return baseRequest.getUseCaches();
}
/**
* Gets the full list of options for this request
*
* @return the full list of options for this request
*/
public List<Option> getOptions() {
return baseRequest.getOptions();
}
/**
* Adds a query option
*
* @param option the query option to add
*/
public void addQueryOption(final QueryOption option) {
baseRequest.getQueryOptions().add(option);
}
/**
* Adds a query option
*
* @param option the query option to add
*/
public void addFunctionOption(final FunctionOption option) {
baseRequest.getFunctionOptions().add(option);
}
/**
* Gets the base request for this collection request
*
* @return the base request for this collection request
*/
protected BaseRequest getBaseRequest() {
return baseRequest;
}
/**
* Gets the class for the collection page
*
* @return the class for the collection page
*/
public Class<T2> getCollectionPageClass() {
return collectionPageClass;
}
}