Package org.mule.common

Examples of org.mule.common.FailureType


            return new DefaultTestResult(TestResult.Status.SUCCESS);
        }
        catch (Exception e)
        {
            // this surely doesn't cover all cases for all kinds of jdbc drivers but it is better than nothing
            FailureType failureType = FailureType.UNSPECIFIED;
            String msg = e.getMessage();
            if (msg != null && msg.contains("Communications link failure"))
            {
                failureType = FailureType.CONNECTION_FAILURE;
            }
View Full Code Here

TOP

Related Classes of org.mule.common.FailureType

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.