* @throws JABException
* In case the configuration file cannot be accessed
*/
public JABSessionAttributes() throws JABException {
try {
AtmiBrokerEnvXML client = new AtmiBrokerEnvXML();
this.properties = client.getProperties();
} catch (Exception e) {
log.error("Could not load the configuration", e);
throw new JABException("Could not load the configuration", e);
}
}