summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-03-23 21:21:39 +0100
committergjoranv <gv@verizonmedia.com>2021-03-23 23:13:01 +0100
commit5617a82f7a32ebcc37be226b27f6ff284f5c896d (patch)
tree45e8b3be33c372971c2b1349d245e223a1f46085 /jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java
parent266046b2bb8bebbb683499f558a05aaf8a4f1ff3 (diff)
Remove the jdisc_http_service module.
- It has been merged into container-core.
Diffstat (limited to 'jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java')
-rw-r--r--jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java b/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java
deleted file mode 100644
index af9e2b5e99a..00000000000
--- a/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/filter/FilterConfig.java
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.jdisc.http.filter;
-
-import java.util.Collection;
-
-/**
- * Legacy filter config. Prefer to use a regular stringly typed config class for new filters.
- *
- * @author tejalk
- */
-public interface FilterConfig {
-
- /** Returns the filter-name of this filter */
- String getFilterName();
-
- /** Returns the filter-class of this filter */
- String getFilterClass();
-
- /**
- * Returns a String containing the value of the
- * named initialization parameter, or null if
- * the parameter does not exist.
- *
- * @param name a String specifying the name of the initialization parameter
- * @return a String containing the value of the initialization parameter
- */
- String getInitParameter(String name);
-
- /**
- * Returns the boolean value of the init parameter. If not present returns default value
- *
- * @return boolean value of init parameter
- */
- boolean getBooleanInitParameter(String name, boolean defaultValue);
-
- /**
- * Returns the names of the filter's initialization parameters as an Collection of String objects,
- * or an empty Collection if the filter has no initialization parameters.
- */
- Collection<String> getInitParameterNames();
-
-}