timeout = sTimeout == null ? 10000 : Long
.parseLong(sTimeout);
contextName = persist.getChildText("context-name");
if (contextName == null) {
throw new ConfigurationException(
"Missing 'context-name' property - the context name of the object received on 'in'");
}
in = persist.getChildText("in");
if (in == null) {
throw new ConfigurationException(
"Missing 'in' property - the queue to process objects from.");
}
out = persist.getChildText("out");
if (out == null) {
throw new ConfigurationException(
"Missing 'out' property - the target queue of the created context");
}
Element values = persist.getChild("context-values");
if (values != null) {