Package org.milyn.container.plugin

Examples of org.milyn.container.plugin.ResultType


        // Get the default profile from the config...
        defaultMessageProfile = configTree.getAttribute(Properties.MESSAGE_PROFILE, Profile.DEFAULT_PROFILE);
       
        // Create the Smooks PayloadProcessor...
        String resultTypeConfig = configTree.getAttribute("resultType", "STRING");
        ResultType resultType;
        try {
            resultType = ResultType.valueOf(resultTypeConfig);
        } catch(IllegalArgumentException e) {
            throw new ConfigurationException("Invalid 'resultType' config value '" + resultTypeConfig + "'.  Valid values are: " + Arrays.asList(ResultType.values()));
        }
View Full Code Here

TOP

Related Classes of org.milyn.container.plugin.ResultType

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.