view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/MapService.java @ 984:cfc7bd35ee0b

Set the map to the extent which was sent by the rest-server gnv/trunk@1167 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 07 Jun 2010 14:52:45 +0000
parents 89ade245ca7a
children 541ff0db1b12
line wrap: on
line source
package de.intevation.gnv.artifactdatabase.objects.map;

import java.util.Collection;

/**
 * This interface defines some basic methods to provide information about a map
 * service.
 *
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 */
public interface MapService {

    /**
     * Retrieves the id of a map service.
     *
     * @return the id of a map service.
     */
    String getID();


    /**
     * Retrieves the URL of a map service.
     *
     * @return the URL of a map service.
     */
    String getURL();


    /**
     * Retrieves the type of a map service.
     *
     * @return the type of a map service.
     */
    String getType();

    /**
     * Retrieves the layers served by a map service.
     *
     * @return the layers served by a map service.
     */
    Collection<Layer> getLayer();
    
    /**
     * Retrieves the bboxvalue served by a map service.
     * @return the bboxvalue
     */
    String getBBoxValue ();
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org