Uses of Interface
org.odata4j.core.OEntityRequest

Packages that use OEntityRequest
org.odata4j.consumer The odata4j client-side (consumer-side) API. 
org.odata4j.core Core odata4j concepts. 
 

Uses of OEntityRequest in org.odata4j.consumer
 

Classes in org.odata4j.consumer that implement OEntityRequest
 class AbstractConsumerEntityRequest<T>
          Shared consumer request implementation for operations dealing with a single response entity.
 class ConsumerCreateLinkRequest
          Create-link-request implementation.
 class ConsumerDeleteEntityRequest
          Delete-request implementation.
 class ConsumerDeleteLinkRequest
          Delete-link-request implementation.
 class ConsumerGetEntityRequest<T>
          Get-entity-request implementation.
 class ConsumerUpdateLinkRequest
          Update-link-request implementation.
 

Methods in org.odata4j.consumer that return OEntityRequest
 OEntityRequest<Void> ODataConsumer.createLink(OEntityId sourceEntity, String targetNavProp, OEntityId targetEntity)
          Creates a new related entity link between two entities.
 OEntityRequest<Void> AbstractODataConsumer.createLink(OEntityId sourceEntity, String targetNavProp, OEntityId targetEntity)
           
 OEntityRequest<Void> ODataConsumer.deleteLink(OEntityId sourceEntity, String targetNavProp, Object... targetKeyValues)
          Deletes related entity links between two entities by navigation property.
 OEntityRequest<Void> AbstractODataConsumer.deleteLink(OEntityId sourceEntity, String targetNavProp, Object... targetKeyValues)
           
 OEntityRequest<T> AbstractConsumerEntityRequest.nav(String navProperty)
           
 OEntityRequest<T> AbstractConsumerEntityRequest.nav(String navProperty, OEntityKey key)
           
 OEntityRequest<Void> ODataConsumer.updateLink(OEntityId sourceEntity, OEntityId newTargetEntity, String targetNavProp, Object... oldTargetKeyValues)
          Updates related entity links between two entities by navigation property.
 OEntityRequest<Void> AbstractODataConsumer.updateLink(OEntityId sourceEntity, OEntityId newTargetEntity, String targetNavProp, Object... oldTargetKeyValues)
           
 

Uses of OEntityRequest in org.odata4j.core
 

Subinterfaces of OEntityRequest in org.odata4j.core
 interface OEntityDeleteRequest
          A consumer-side entity-request builder, used for DELETE operations of a single entity.
 interface OEntityGetRequest<T>
          A consumer-side entity-request builder, used for GET operations of a single entity.
 

Methods in org.odata4j.core that return OEntityRequest
 OEntityRequest<T> OEntityRequest.nav(String navProperty)
          Navigates to a related entity using a single-valued navigation property.
 OEntityRequest<T> OEntityRequest.nav(String navProperty, OEntityKey key)
          Navigates to a related entity using a collection navigation property.
 



http://odata4j.org