com.compilit.mediator.api.Query Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cqers-mediator-api Show documentation
Show all versions of cqers-mediator-api Show documentation
The API for the corresponding CQ(E)RS Mediator Core library
The newest version!
package com.compilit.mediator.api;
/**
* Queries are for all read-only requests. Mutating of resources should not be taking place through a Query.
*
* @param The return type.
*/
public interface Query extends Request {
}