view gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultMapService.java @ 815:22c18083225e

Removed compiler warnings while JavaDoc generation. gnv-artifacts/trunk@900 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 12 Apr 2010 06:59:33 +0000
parents feae2f9d6c6f
children 32d01e1ce2df
line wrap: on
line source
package de.intevation.gnv.artifacts.services.requestobjects;

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 {

    private String id = null;

    private Collection<Layer> layer = null;

    private String type = null;

    private String url = null;

    /**
     * Constructor
     * @param id The id of this service.
     * @param type The type of  this service.
     * @param layer The layers available in this service.
     * @param url The url used to call this service.
     */
    public DefaultMapService(String id, Collection<Layer> layer,
                             String type, String url) {
        super();
        this.id = id;
        this.layer = layer;
        this.type = type;
        this.url = url;
    }

    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;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org