org.odata4j.core
Interface OEntityGetRequest<T>

Type Parameters:
T - the java-type of the operation response
All Superinterfaces:
OEntityRequest<T>
All Known Implementing Classes:
ConsumerGetEntityRequest

public interface OEntityGetRequest<T>
extends OEntityRequest<T>

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


Method Summary
 OEntityGetRequest<T> expand(String expand)
          Specifies related entities to expand inline as part of the response.
 OEntityGetRequest<T> select(String select)
          Specifies a subset of properties to return.
 
Methods inherited from interface org.odata4j.core.OEntityRequest
execute, nav, nav
 

Method Detail

expand

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

select

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


http://odata4j.org