1 /**2 * Copyright (C) 2001-2005 France Telecom R&D3 */4 package org.objectweb.speedo.jmx.mbeans;5 6 import java.util.Collection ;7 8 /**9 * 10 *11 * @author chassase12 */13 public interface TxMBean {14 15 String getConcurrencyManager();16 String getConcurrencyPolicy();17 String getTransactionManagerName();18 Collection getDependencies();19 20 }21