Examples of DecisionTableConfiguration


Examples of org.kie.internal.builder.DecisionTableConfiguration

                                ResourceDetail syResourceDetail = syResource.getDetail();
                                if (syResourceDetail != null) {
                                    org.kie.api.io.ResourceConfiguration kieResourceConfiguration = null;
                                    if (org.kie.api.io.ResourceType.DTABLE.equals(kieResourceType)) {
                                        String inputType = getInputType(syResourceDetail, DecisionTableInputType.XLS.toString());
                                        DecisionTableConfiguration dtc = KnowledgeBuilderFactory.newDecisionTableConfiguration();
                                        dtc.setInputType(DecisionTableInputType.valueOf(inputType));
                                        dtc.setWorksheetName(getWorksheetName(syResourceDetail));
                                        //dtc.setUsingExternalTypes(syResourceDetail.isUsingExternalTypes());
                                        kieResourceConfiguration = dtc;
                                    }
                                    /* SWITCHYARD-1662
                                    else if (org.kie.api.io.ResourceType.SCARD.equals(kieResourceType)) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.