Package org.jitterbit.application.cache

Examples of org.jitterbit.application.cache.AbstractTextFileCache


     * @param parentDir
     *            a <code>Folder</code> representing the directory in which the cached files
     *            will be stored.
     */
    public FileBasedPipelinePluginManifestCache(Folder parentDir) {
        delegate = new AbstractTextFileCache(CACHE_ID, parentDir.asJavaFile(), false) {

            @Override
            protected String getFileName(Object id) {
                return id + ".xml";
            }
View Full Code Here


     *
     * @param parentDir
     *      the directory in which the cached information will be stored.
     */
    public WsdlFileCache(File parentDir) {
        this.cacheImpl = new AbstractTextFileCache(CACHE_ID, parentDir, true) {

            @Override
            protected String getFileName(Object id) {
                return id + ".wsdl";
            }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.cache.AbstractTextFileCache

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.