org.jboss.as.clustering.infinispan.subsystem.TransactionMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-infinispan-extension Show documentation
Show all versions of wildfly-clustering-infinispan-extension Show documentation
Installs an extension that provides the infinispan subsystem.
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.clustering.infinispan.subsystem;
/**
* @author Paul Ferraro
*/
public enum TransactionMode {
NONE,
BATCH,
NON_XA,
NON_DURABLE_XA,
FULL_XA,
;
}