01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings;
14:
15: import java.io.Serializable;
16:
17: /**
18: * For Resources that can be accessed through an URL.
19: *
20: * @author <a href="mailto:H.Zeller@acm.org">Henner Zeller</a>
21: */
22: public interface URLResource extends Serializable {
23: /**
24: * returns the URL, this resource can be fetched from. This URL may
25: * be relative, usually if generated from the externalizer.
26: */
27: SimpleURL getURL();
28: }
|