BaseCollectionResponse<T> Class

  • java.lang.Object
    • com.microsoft.graph.http.BaseCollectionResponse<T>

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 AdditionalDataManager 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

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Field Details

public String nextLink

The link to the next page returned by the initial request if any.

value

public List value

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:

serializer - the serializer
json - the JSON object to set this object to

values

public List values()

The list of items within this collection page

Applies to