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

com.transferwise.common.spyql.SpyqlTransactionDefinition Maven / Gradle / Ivy

Go to download

Transferwise Database Connection Spy - allows to start listening various JDBC events, especially events around transactions.

The newest version!
package com.transferwise.common.spyql;

import lombok.Data;
import lombok.experimental.Accessors;

@Data
@Accessors(chain = true)
public class SpyqlTransactionDefinition {

  private final String name;
  private final Boolean readOnly;
  private final Integer isolationLevel;

  private String entryPointName;
  private String entryPointGroup;
  private String entryPointOwner;

  public SpyqlTransactionDefinition(String name, Boolean readOnly, Integer isolationLevel) {
    this.name = name;
    this.readOnly = readOnly;
    this.isolationLevel = isolationLevel;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy