Package org.jitterbit.integration.client.ui.interchange.location.panel

Examples of org.jitterbit.integration.client.ui.interchange.location.panel.CacheBasedLoginNameHistory


    public void setDataCache(DatabaseLocationCache cache) {
        checkNotNull(cache, "cache");
        this.cache = cache;
        serverDefiner.installAutoCompletion(new CacheBasedServerHistory(cache));
        databaseDefiner.installAutoCompletion(new CacheBasedDatabaseHistory(cache));
        loginDefiner.installAutoCompletionInLoginField(new CacheBasedLoginNameHistory(cache));
    }
View Full Code Here


    public void setCache(final LdapLocationCache cache) {
        if (cache == null) {
            throw new NullPointerException("cache cannot be null");
        }
        this.cache = cache;
        loginDefiner.installAutoCompletionInLoginField(new CacheBasedLoginNameHistory(cache));
        serverDefiner.setHistory(new CacheBasedServerHistory(cache));
        baseNameDefiner.setHistory(new CacheBasedBaseNameHistory(cache));
    }
View Full Code Here

    }

    public void setCache(HttpLocationCache cache) {
        checkNotNull(cache, "cache");
        this.cache = cache;
        loginDefiner.installAutoCompletionInLoginField(new CacheBasedLoginNameHistory(cache));
        urlDefiner.setHistory(new CacheBasedUrlHistory(cache));
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.location.panel.CacheBasedLoginNameHistory

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.