aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/jdisc/http/filter/SecurityResponseFilter.java
blob: fad33bf43b21dbe9eb125ef055f6b307686d4ba1 (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.http.filter;

public interface SecurityResponseFilter extends ResponseFilterBase {

    void filter(DiscFilterResponse response, RequestView request);

}