public void run() throws SVNException {
SVNAdminClient client = getEnvironment().getClientManager().getAdminClient();
client.setEventHandler(this);
client.doListTransactions(getLocalRepository());
}
public void handleAdminEvent(SVNAdminEvent event, double progress) throws SVNException {
if (event != null && event.getAction() == SVNAdminEventAction.TRANSACTION_LISTED) {
getEnvironment().getOut().print(event.getTxnName() + "\n");