RunLevelAction action = new RunLevelAction(this.glob, "LOAD", 3, -1, ErrorCode.toErrorCode("internal.unknown"), 5);
config.addAction(action);
action = new RunLevelAction(this.glob, "STOP", -1, 2, null, 4);
config.addAction(action);
String xml = config.toXml();
log.info(xml);
PluginConfigSaxFactory factory = new PluginConfigSaxFactory(this.glob);
config = factory.readObject(xml);
RunLevelAction[] actions = config.getActions();