Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WSPLGENLayerFacet.java @ 2877:f0a67bc0e777 2.7
merged flys-backend/2.7
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:31 +0200 |
parents | ccad7a6ddaa4 |
children | 4bd3d8bbb60c |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import de.intevation.flys.artifacts.states.DefaultState.ComputeType; public class WSPLGENLayerFacet extends WMSLayerFacet { public WSPLGENLayerFacet() { } public WSPLGENLayerFacet(int index, String name, String description) { this(index, name, description, ComputeType.FEED, null, null); } public WSPLGENLayerFacet( int index, String name, String description, ComputeType type, String stateId, String hash ) { super(index, name, description, type, stateId, hash); } public WSPLGENLayerFacet( int index, String name, String description, ComputeType type, String stateId, String hash, String url ) { super(index, name, description, type, stateId, hash, url); } @Override public boolean isQueryable() { return true; } }