Package org.apache.ivory.group

Examples of org.apache.ivory.group.FeedGroup


            + FeedHelper.getLocation(feed, LocationType.DATA,
                cluster.getName()).getPath());
      }
    }
        for (String groupName : groupNames) {
            FeedGroup group = FeedGroupMap.get().getGroupsMapping().get(groupName);
            if (group == null || group.canContainFeed(feed)) {
                continue;
            } else {
                throw new ValidationException("Feed " + feed.getName() + "'s frequency: " + feed.getFrequency().toString()
                        + ", path pattern: " + FeedHelper.getLocation(feed, LocationType.DATA).getPath()
                        + " does not match with group: " + group.getName() + "'s frequency: " + group.getFrequency()
                        + ", date pattern: " + group.getDatePattern());
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.ivory.group.FeedGroup

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.