view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/DefaultMapService.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 0846c9c4abdd
children 541ff0db1b12
line wrap: on
line source
package de.intevation.gnv.artifactdatabase.objects.map;

import java.util.Collection;

/**
 * The default implementation of <code>MapService</code>.
 *
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 */
public class DefaultMapService implements MapService {

    /**
     * The id of this mapservice.
     */
    private String id = null;

    /**
     * The layer which are provided by this mapservice.
     */
    private Collection<Layer> layer = null;

    /**
     * The type of this mapservice.
     */
    private String type = null;

    /**
     * The URl of this mapservice.
     */
    private String url = null;
    
    /**
     * The Bbox which surrounds the data of the Mapservice
     */
    private String bbox = null;

    /**
     * Constructor
     * 
     * @param id  the id of this mapservice
     * @param layer the layer which are provided by this mapservice
     * @param type the type of this mapservice
     * @param url the URl of this mapservice
     */
    public DefaultMapService(String id, Collection<Layer> layer,
                             String type, String url) {
        super();
        this.id = id;
        this.layer = layer;
        this.type = type;
        this.url = url;
    }
    
    /**
     * Constructor
     * 
     * @param id  the id of this mapservice
     * @param layer the layer which are provided by this mapservice
     * @param type the type of this mapservice
     * @param url the URl of this mapservice
     * @param bbox the Bbox which surrounds the data of the Mapservice
     */
    public DefaultMapService(String id, Collection<Layer> layer,
                             String type, String url, String bbox) {
        this(id,layer,type,url);
        this.bbox = bbox;
    }


    public String getID() {
        return this.id;
    }


    public Collection<Layer> getLayer() {
        return this.layer;
    }


    public String getType() {
        return this.type;
    }


    public String getURL() {
        return this.url;
    }
    
    public String getBBoxValue() {
        return this.bbox;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org