action.process(this);
} else if (actionString.equalsIgnoreCase(Timeout.action)) {
action = new Timeout(jo);
action.process(this);
} else if (actionString.equalsIgnoreCase(Preserve.action)) {
action = new Preserve(jo);
action.process(this);
} else {
System.err.println("Message action type not supported: " + actionString);
}
}