Examples of ESBProperties


Examples of org.jboss.internal.soa.esb.util.ESBProperties

    /**
     * Public default constructor.
     */
    public SoapUIClientService() throws ConfigurationException {
        final ESBProperties properties = new ESBProperties("/soapui-client.sar.properties");

        int smooksLRUCacheSize = properties.getIntProperty("smooks.lru.cache.size", 30);
        smooksCache = new SmooksCache(smooksLRUCacheSize);
        final int wsdlLRUCacheSize = properties.getIntProperty("wsdl.lru.cache.size", 30);
        wsdlCache = new WsdlCache(wsdlLRUCacheSize);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.