* @author Tom Baeyens
*/
public class PvmDbSessionBinding implements Binding {
public Object parse(Element element, Parse parse, Parser parser) {
PvmDbSessionDescriptor descriptor = new PvmDbSessionDescriptor();
if (element.hasAttribute("session")) {
descriptor.setSessionName(element.getAttribute("session"));
}
return descriptor;
}