BaseCollectionResponse<T> Class
- java.
lang. Object - com.
microsoft. graph. http. BaseCollectionResponse<T>
- com.
Type Parameters
- T
the entity or complex type
Implements
public abstract class BaseCollectionResponse<T>
implements ICollectionResponse<T>
The basic collection response implementation
Field Summary
| Modifier and Type | Field and Description |
|---|---|
| java.lang.String |
nextLink
The link to the next page returned by the initial request if any. |
| java.util.List<T> |
value
The list of items within this collection page |
Constructor Summary
| Constructor | Description | |
|---|---|---|
| BaseCollectionResponse() | ||
Method Summary
| Modifier and Type | Method and Description |
|---|---|
|
final
Additional |
additionalDataManager()
Provides access to objects not anticipated in the model, as well as request and response data from the HTTP call |
| java.lang.String |
nextLink()
Gets the link to the next page of this collection |
| void |
setRawObject(ISerializer serializer, JsonObject json)
Sets the raw JSON object |
| java.util.List<T> |
values()
The list of items within this collection page |
Methods inherited from java.lang.Object
Field Details
nextLink
public String nextLink
The link to the next page returned by the initial request if any.
value
public List
The list of items within this collection page
Constructor Details
BaseCollectionResponse
public BaseCollectionResponse()
Method Details
additionalDataManager
public final AdditionalDataManager additionalDataManager()
Provides access to objects not anticipated in the model, as well as request and response data from the HTTP call
nextLink
public String nextLink()
Gets the link to the next page of this collection
setRawObject
public void setRawObject(ISerializer serializer, JsonObject json)
Sets the raw JSON object
Parameters:
values
public List
The list of items within this collection page