aboutsummaryrefslogtreecommitdiffstats
path: root/flags/src/main/java/com/yahoo/vespa/flags/json/BlacklistCondition.java
blob: 3735207c2ef1ff3ea0bddf2cebc20c2aafcc54e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.flags.json;

/**
 * @author hakonhall
 */
public class BlacklistCondition extends ListCondition {
    public static  BlacklistCondition create(CreateParams params) { return new BlacklistCondition(params); }
    private BlacklistCondition(CreateParams params) { super(Type.BLACKLIST, params); }
}