Package fr.soleil.salsa.client.comete.dao

Examples of fr.soleil.salsa.client.comete.dao.DummyStringDAO


    @Override
    public AbstractDAO<String> createStringDAO(AbstractKey abstractKey) {

        if (abstractKey == null) {
            return new DummyStringDAO();
        }

        AbstractDAO<String> dao = stringDAOCache.lookup(abstractKey);

        if (dao == null) {
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.comete.dao.DummyStringDAO

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.