use of org.jpos.space.LocalSpace in project jPOS by jpos.
the class QServer method grabSpace.
private LocalSpace grabSpace(Element e) throws ConfigurationException {
String uri = e != null ? e.getText() : "";
Space sp = SpaceFactory.getSpace(uri);
if (sp instanceof LocalSpace) {
return (LocalSpace) sp;
}
throw new ConfigurationException("Invalid space " + uri);
}
Aggregations