Package org.talend.esb.servicelocator.cxf

Examples of org.talend.esb.servicelocator.cxf.LocatorFeature


        boolean logMessages = false;
        if (null != props.get(ESBEndpointConstants.LOG_MESSAGES)) {
            logMessages = ((Boolean) props.get(ESBEndpointConstants.LOG_MESSAGES)).booleanValue();
        }

        LocatorFeature slFeature = null;
        if (useServiceLocator) {
            slFeature = new LocatorFeature();
            //pass SL custom properties to Consumer
            Object slProps = props.get(ESBEndpointConstants.REQUEST_SL_PROPS);
            if (slProps != null) {
                slFeature.setRequiredEndpointProperties((Map<String, String>)slProps);
            }
        }

        boolean useCrypto = false;
        if (null != props.get(ESBEndpointConstants.USE_CRYPTO)) {
View Full Code Here

TOP

Related Classes of org.talend.esb.servicelocator.cxf.LocatorFeature

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.