
org.odata4j.producer.EntityIdResponse Maven / Gradle / Ivy
The newest version!
package org.odata4j.producer;
import java.util.Collection;
import org.odata4j.core.OEntityId;
import org.odata4j.edm.EdmMultiplicity;
/**
* An EntityIdResponse
is a response to a client request expecting one or more entity-ids.
*
* The {@link Responses} static factory class can be used to create EntityIdResponse
instances.
*/
public interface EntityIdResponse {
/** Gets the multiplicity of the response */
EdmMultiplicity getMultiplicity();
/** Gets the response payload as entity ids */
Collection getEntities();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy