All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.odata4j.producer.EntitiesResponse Maven / Gradle / Ivy

The newest version!
package org.odata4j.producer;

import java.util.List;

import org.odata4j.core.OEntity;
import org.odata4j.edm.EdmEntitySet;

/**
 * An EntitiesResponse is a response to a client request expecting multiple OData entities.
 *
 * 

The {@link Responses} static factory class can be used to create EntitiesResponse instances.

*/ public interface EntitiesResponse extends BaseResponse { /** * Gets the entity-set for the entities. * * @return the entity-set for the entities */ EdmEntitySet getEntitySet(); /** * Gets the OData entities, if any. * * @return the entities, if any */ List getEntities(); /** * Gets the inline-count value, if applicable. * * @return the inline-count value, if applicable */ Integer getInlineCount(); /** * Gets the continuation token to use on a subsequent request, if applicable. * * @return a continuation token, if applicable */ String getSkipToken(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy