serverClientKeyMappings = null;
}
InputStream is = getClass().getClassLoader().getResourceAsStream("Deploy.PropertyMappings.xml");
DefaultKongaSaxParser parser = new DefaultKongaSaxParser();
parser.addStartElementHandlerFactory("IntegrationEntity", this);
parser.addStartElementHandlerFactory("Key", this);
parser.addEndElementHandlerFactory("IntegrationEntity", this);
try {
clientServerKeyMappings = Maps.newEnumMap(EntityType.class);
serverClientKeyMappings = Maps.newEnumMap(EntityType.class);
currentEntityType = null;
currentClientServerKeyMappings = null;
currentServerClientKeyMappings = null;
parser.load(is);
} catch (KongaSaxParserException confError) {
clientServerKeyMappings = null;
serverClientKeyMappings = null;
currentEntityType = null;
currentClientServerKeyMappings = null;