blob: 73afa43a306ece49d40838446b0b4a891cf30396 [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.service;
2
3import java.io.*;
4
5public interface Refreshable {
Stuart McCulloch2a0afd62012-09-06 18:28:06 +00006 boolean refresh() throws Exception;
Stuart McCulloch4482c702012-06-15 13:27:53 +00007
8 File getRoot();
Stuart McCullochf3173222012-06-07 21:57:32 +00009}