public interface

OEntityGetRequest

implements OEntityRequest<T>
org.odata4j.core.OEntityGetRequest<T>

Class Overview

A consumer-side entity-request builder, used for GET operations of a single entity. Call execute() to issue the request.

Summary

Public Methods
abstract OEntityRequest<T> expand(String expand)
Specifies related entities to expand inline as part of the response.
abstract OEntityRequest<T> select(String select)
Specifies a subset of properties to return.
[Expand]
Inherited Methods
From interface org.odata4j.core.OEntityRequest

Public Methods

public abstract OEntityRequest<T> expand (String expand)

Specifies related entities to expand inline as part of the response.

Parameters
expand A comma-separated list of navigation properties
Returns
  • the entity-request builder

public abstract OEntityRequest<T> select (String select)

Specifies a subset of properties to return.

Parameters
select A comma-separated list of selection clauses
Returns
  • the entity-request builder