use of org.kie.api.io.ResourceConfiguration in project drools by kiegroup.
the class DecisionTableConfigurationHandler method end.
public Object end(String uri, String localName, ExtensibleXmlParser parser) throws SAXException {
final Element element = parser.endElementBuilder();
final InternalResource resource = (InternalResource) parser.getParent();
ResourceConfiguration dtConf = (ResourceConfiguration) parser.getCurrent();
resource.setConfiguration(dtConf);
return dtConf;
}
Aggregations