1 /**
2 * Logback: the reliable, generic, fast and flexible logging framework.
3 * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4 *
5 * This program and the accompanying materials are dual-licensed under
6 * either the terms of the Eclipse Public License v1.0 as published by
7 * the Eclipse Foundation
8 *
9 * or (per the licensee's choosing)
10 *
11 * under the terms of the GNU Lesser General Public License version 2.1
12 * as published by the Free Software Foundation.
13 */
14 package ch.qos.logback.classic.turbo;
15
16 import ch.qos.logback.core.spi.FilterReply;
17
18 /**
19 * An abstract class containing support for {@link #onMatch} on
20 * {@link #onMismatch} attributes, shared by many but not all turbo filters.
21 *
22 * @author Ceki Gulcu
23 */
24 public abstract class MatchingFilter extends TurboFilter {
25
26 protected FilterReply onMatch = FilterReply.NEUTRAL;
27 protected FilterReply onMismatch = FilterReply.NEUTRAL;
28
29 final public void setOnMatch(String action) {
30 if ("NEUTRAL".equals(action)) {
31 onMatch = FilterReply.NEUTRAL;
32 } else if ("ACCEPT".equals(action)) {
33 onMatch = FilterReply.ACCEPT;
34 } else if ("DENY".equals(action)) {
35 onMatch = FilterReply.DENY;
36 }
37 }
38
39 final public void setOnMismatch(String action) {
40 if ("NEUTRAL".equals(action)) {
41 onMismatch = FilterReply.NEUTRAL;
42 } else if ("ACCEPT".equals(action)) {
43 onMismatch = FilterReply.ACCEPT;
44 } else if ("DENY".equals(action)) {
45 onMismatch = FilterReply.DENY;
46 }
47 }
48 }