comparison gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/MapService.java @ 792:9b9bf42b7928

Added and repaired JavaDoc in artifacts package. gnv-artifacts/trunk@874 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 31 Mar 2010 10:52:34 +0000
parents c4156275c1e1
children feae2f9d6c6f
comparison
equal deleted inserted replaced
791:23877dd69444 792:9b9bf42b7928
1 package de.intevation.gnv.artifacts.services.requestobjects; 1 package de.intevation.gnv.artifacts.services.requestobjects;
2 2
3 import java.util.Collection; 3 import java.util.Collection;
4 4
5 /** 5 /**
6 * This is the interface description of <code>MapService</code>. Currently,
7 * there are four methods defined:<br>
8 * <ol>
9 * <li>getID(): Returns the id of this service.</li>
10 * <li>getURL(): Returns the url used to call this service.</li>
11 * <li>getType(): Returns the service type.</li>
12 * <li>getLayer(): Returns a collection of layers contained in this service.
13 * </li>
14 * </ol>
15 *
6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 16 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
7 * 17 *
8 */ 18 */
9 public interface MapService { 19 public interface MapService {
10 20
11 21
22 /**
23 *
24 * @return the id of this service.
25 */
12 String getID(); 26 String getID();
13 27
28 /**
29 *
30 * @return the url under which this service is available.
31 */
14 String getURL(); 32 String getURL();
15 33
34 /**
35 *
36 * @return the service type.
37 */
16 String getType(); 38 String getType();
17 39
40 /**
41 *
42 * @return a collection of layers contained in this service.
43 */
18 Collection<Layer> getLayer(); 44 Collection<Layer> getLayer();
19 45
20 } 46 }
47 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org