aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneFilter.java
blob: f718b86ca402d9a8f4d7b50dd27ed74237eaf571 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yahoo.vespa.hosted.controller.api.integration.zone;

/**
 * A ZoneId list which can be filtered in various ways; elements can be accessed after at least one filter.
 *
 * The methods here return instances of {@link ZoneList}, which extends ZoneFilter, but with accessors and additional filters.
 * This forces the developer to consider which of the filters in this class to apply, prior to processing any zones.
 *
 * @author jvenstad
 */
public interface ZoneFilter {

    /** Negates the next filter. */
    ZoneFilter not();

    /** All zones from the initial pool. */
    ZoneList all();

    /** Zones where which are managed by the controller. */
    ZoneList controllerManaged();

}