aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/i18n/filter/Filter.java
blob: 7483241cbe04938c7b42fb5a39e8187949d73fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.spongycastle.i18n.filter;

public interface Filter
{

    /**
     * Runs the filter on the input String and returns the filtered String
     * @param input input String
     * @return filtered String
     */
    public String doFilter(String input);
    
    /**
     * Runs the filter on the input url and returns the filtered String
     * @param input input url String
     * @return filtered String
     */
    public String doFilterUrl(String input);

}