public DbSessionBinding() {
super(TAG);
}
public Object parse(Element element, Parse parse, Parser parser) {
DbSessionDescriptor descriptor = new DbSessionDescriptor();
if (element.hasAttribute("session")) {
descriptor.setSessionName(element.getAttribute("session"));
}
return descriptor;
}