Attribute attr = start.getAttributeByName(new QName("", "condition"));
if (attr != null) {
conditions.append("&" + attr.getValue());
}
if (conditions.length() > 0) {
entry.setCondition(new SimpleCondition(conditions.toString(), aliasPool));
}
String filter = null;
if (start.getAttributeByName(new QName("", "valuefilter")) != null) {
if (globalValuefilter != null && globalValuefilter.length() > 0)
filter = new StringBuilder(globalValuefilter)