Package org.zanata.dao

Examples of org.zanata.dao.LocaleDAO


                documentId, localeId));
    }

    @Override
    public void clearDocumentStatistics(Long documentId) {
        LocaleDAO localeDAO = serviceLocator.getInstance(LocaleDAO.class);
        for (HLocale locale : localeDAO.findAll()) {
            DocumentLocaleKey key =
                    new DocumentLocaleKey(documentId, locale.getLocaleId());
            documentStatisticCache.remove(key);
        }
    }
View Full Code Here

TOP

Related Classes of org.zanata.dao.LocaleDAO

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.