public List<ExportEntry> run() throws IOException, MountException {
Mount1Client client =
new Mount1Client(host, Protocol.TCP, -1, -1);
List<ExportEntry> exportEntryList;
try {
exportEntryList = client.export();
} finally {
if (client != null) {
try {
client.close();
} catch (IOException e) {