01: /*
02: * Created on Jun 15, 2005
03: */
04: package uk.org.ponder.springutil;
05:
06: import org.springframework.beans.factory.BeanNameAware;
07:
08: /** Part of the obsolete ReverseURLMapper system.
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: *
11: */
12: public interface URLAwareController extends BeanNameAware {
13: public abstract String getBeanName();
14:
15: public void setReverseURLMapper(ReverseURLMapper mapper);
16: }
|