Package org.jbpm.jsf

Examples of org.jbpm.jsf.JbpmActionListener


    }

    public void handleAction(JbpmJsfContext context, ActionEvent event) {
        final FacesContext facesContext = FacesContext.getCurrentInstance();
        final ELContext elContext = facesContext.getELContext();
        final JbpmActionListener listener;
        if (typeExpression != null) {
            final Object typeValue = typeExpression.getValue(elContext);
            if (typeValue == null) {
                context.setError("Error calling action listener", "The type value is null");
                return;
            }
            final Class type;
            if (typeValue instanceof Class) {
                type = (Class) typeValue;
            } else {
                final String className = typeValue.toString();
                try {
                    type = Class.forName(className);
                } catch (ClassNotFoundException e) {
                    context.setError("Error calling action listener", "The class '" + className + "' was not found");
                    return;
                }
            }
            if (! JbpmActionListener.class.isAssignableFrom(type)) {
                context.setError("Error calling action listener", "The class '" + type.getName() + "' is not a valid JbpmActionListener");
                return;
            }
            try {
                listener = (JbpmActionListener) type.newInstance();
            } catch (Exception e) {
                context.setError("Error calling action listener", e);
                return;
            }
        } else if (listenerExpression != null) {
            final Object listenerValue = listenerExpression.getValue(elContext);
            if (listenerValue == null) {
                context.setError("Error calling action listener", "The listener value is null");
                return;
            }
            if (! (listenerValue instanceof JbpmActionListener)) {
                context.setError("Error calling action listener", "The listener value given is not a valid JbpmActionListener");
                return;
            }
            listener = (JbpmActionListener) listenerValue;
        } else {
            context.setError("Error calling action listener", "Either a type or a listener must be given");
            return;
        }
        listener.handleAction(context, event);
    }
View Full Code Here

TOP

Related Classes of org.jbpm.jsf.JbpmActionListener

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.