aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/jdisc/http/filter/SecurityResponseFilter.java
blob: aa4f7d29b8919b7fa122f90b4683498911a4c5a2 (plain) (blame)
1
2
3
4
5
6
7
8
// 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;

public interface SecurityResponseFilter extends ResponseFilterBase {

    void filter(DiscFilterResponse response, RequestView request);

}