TransactionsRecoveryEventpublic class TransactionsRecoveryEvent extends AdminEvent implements CommandEventTransactionsRecoveryEvent - emitted by DAS to send requests to Ejb Timer Service
Attibutes: actionType, from, servers |
Fields Summary |
---|
public static final String | eventTypeEvent type | private String | _serverNameAttributes () | private String | _logDir |
Constructors Summary |
---|
public TransactionsRecoveryEvent(String instance, String serverNameToRecover, String logDirPath)Create a new TransactionsRecoveryEvent. //path to log files directory (can be null)
this(eventType, instance, serverNameToRecover, logDirPath);
| public TransactionsRecoveryEvent(String type, String instance, String serverNameToRecover, String logDirPath)Create a new TransactionsRecoveryEvent.
super(type, instance);
_serverName = serverNameToRecover;
_logDir = logDirPath;
|
Methods Summary |
---|
public java.lang.String | getLogDir()Get logdir param
return _logDir;
| public java.lang.String | getServerName()Get serverName param
return _serverName;
|
|