Package com.netflix.paas.entity

Examples of com.netflix.paas.entity.PassGroupConfigEntity$Builder


     * Refresh the schema list from the DAO
     */
    @Override
    public void refresh() {
        LOG.info("Refreshing schema list for group: " + groupName);
        PassGroupConfigEntity group = groupDao.read(groupName);
        if (group == null) {
            LOG.error("Failed to load configuration for group: " + groupName);
        }
        else {
            Collection<DbEntity> foundEntities = schemaDao.read(group.getSchemas());
            if (foundEntities.isEmpty()) {
                LOG.warn("Not virtual schemas associated with group: " + groupName);
            }
            else {
                for (DbEntity entity : foundEntities) {
View Full Code Here

TOP

Related Classes of com.netflix.paas.entity.PassGroupConfigEntity$Builder

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.