01: /*
02: * Created on Nov 19, 2005
03: */
04: package uk.org.ponder.rsac;
05:
06: import org.springframework.context.ApplicationContext;
07:
08: /** All the information required (apart from the parent ApplicationContext)
09: * for the RSACBeanLocator to be initialised.
10: * @author Antranig Basman (antranig@caret.cam.ac.uk)
11: *
12: */
13: public interface RSACResourceLocator {
14: public String[] getConfigLocations();
15:
16: public ApplicationContext getApplicationContext();
17: }
|