All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clover.remote.TxStartResponseResult Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.clover.remote;

public enum TxStartResponseResult {
  SUCCESS(true, 0),
  DUPLICATE(false, 1),
  ORDER_MODIFIED(false, 2),
  ORDER_LOAD(false, 3),
  FAIL(false, 4);

  public final boolean success;
  public final int messageId;

  TxStartResponseResult(boolean success, int messageId) {
    this.success = success;
    this.messageId = messageId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy