com.hmsonline.cassandra.triggers.LogEntryStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hms-cassandra-triggers Show documentation
Show all versions of hms-cassandra-triggers Show documentation
Cassandra Triggers is a lightweight mechanism to implement trigger-like functionality for Cassandra.
package com.hmsonline.cassandra.triggers;
public enum LogEntryStatus {
PREPARING, COMMITTED, COMPLETE, ERROR; // ; is optional
@Override
public String toString() {
return super.toString();
}
}