io.serialized.client.projection.query.ProjectionQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serialized-client Show documentation
Show all versions of serialized-client Show documentation
Java Client for Serialized APIs
The newest version!
package io.serialized.client.projection.query;
import okhttp3.HttpUrl;
import java.util.Optional;
import java.util.UUID;
public interface ProjectionQuery {
/**
* Build the full URL for the projection query
*
* @param rootUrl the root API url (normally Serialized public API)
* @return the full query url
*/
HttpUrl constructUrl(HttpUrl rootUrl);
Optional tenantId();
/**
* Class that the data in the projection result should be serialized to.
*
* @return the response class
*/
Optional responseClass();
}