01: /**
02: * Copyright (C) 2001-2005 France Telecom R&D
03: */package org.objectweb.speedo.jmx.mbeans;
04:
05: import java.util.Collection;
06:
07: /**
08: *
09: *
10: * @author chassase
11: */
12: public interface TxMBean {
13:
14: String getConcurrencyManager();
15:
16: String getConcurrencyPolicy();
17:
18: String getTransactionManagerName();
19:
20: Collection getDependencies();
21:
22: }
|