pl.atom.spring.cqs.query.Query Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cqs-spring-boot-starter Show documentation
Show all versions of cqs-spring-boot-starter Show documentation
Easy way to follow CQS principle with spring-boot
The newest version!
package pl.atom.spring.cqs.query;
/**
* Implement to mark query. Query execution returns value. Query is used to execute some data fetch that doesn't change
* state of the system.
*
* @author Artur Tomaszewski arttom
*/
public interface Query {
}