net.pincette.jes.Commands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pincette-jes Show documentation
Show all versions of pincette-jes Show documentation
JSON Event Sourcing With Kafka and MongoDB
The newest version!
package net.pincette.jes;
/**
* Built-in command names.
*
* @author Werner Donné
* @since 3.0
*/
public class Commands {
/** Logical delete of an aggregate instance. */
public static final String DELETE = "delete";
/** Gets an aggregate. */
public static final String GET = "get";
/** Applies a JSON patch. */
public static final String PATCH = "patch";
/** Replaces the state of an aggregate instance. */
public static final String PUT = "put";
private Commands() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy