Stuart McCulloch | d00f971 | 2009-07-13 10:06:47 +0000 | [diff] [blame] | 1 | package aQute.service.scripting; |
2 | |||||
3 | import java.io.Reader; | ||||
4 | import java.util.Map; | ||||
5 | |||||
6 | public abstract interface Scripter | ||||
7 | { | ||||
8 | public static final String MIME_TYPE = "mime.type"; | ||||
9 | |||||
10 | public abstract Object eval(Map<String, Object> paramMap, Reader paramReader) | ||||
11 | throws Exception; | ||||
12 | } |