Package org.apache.shale.dialog.scxml.config.DialogMetadata

Examples of org.apache.shale.dialog.scxml.config.DialogMetadata.SCXMLAction


                List customDialogActions = new ArrayList();
                customDialogActions.addAll(shaleDialogActions);

                List devActions = dMetadata.getDialogActions();
                for (int i = 0; i < devActions.size(); i++) {
                    SCXMLAction scxmlAction = (SCXMLAction) devActions.get(i);
                    String actionname = scxmlAction.getName();
                    String uri = scxmlAction.getUri();
                    String actionFQCN = scxmlAction.getActionclassname();
                    if (actionname == null || uri == null || actionFQCN == null) {
                        // shouldn't happen if dialog-config is validated
                        throw new IllegalArgumentException("A custom Commons"
                            + " SCXML action (<scxmlaction> element) in the"
                            + " dialog configuration is missing the 'name',"
View Full Code Here

TOP

Related Classes of org.apache.shale.dialog.scxml.config.DialogMetadata.SCXMLAction

Copyright © 2018 www.massapicom. 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.