01: /*
02: * ResourceHandler.java
03: *
04: * Created on June 26, 2003, 3:51 PM
05: */
06:
07: package com.yworks.yguard.obf;
08:
09: import java.io.IOException;
10: import java.io.InputStream;
11: import java.io.OutputStream;
12: import java.util.Map;
13:
14: /**
15: *
16: * @author wiese
17: */
18: public interface ResourceHandler {
19: public boolean filterName(String inputName, StringBuffer outputName);
20:
21: public boolean filterContent(InputStream in, OutputStream out,
22: String resourceName) throws IOException;
23:
24: public String filterString(String in, String resourceName)
25: throws IOException;
26: }
|