Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WSPLGENLayerFacet.java @ 2638:ccad7a6ddaa4
Issue 560.
Added new facet for WSPLGEN layers.
flys-artifacts/trunk@4276 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 19 Apr 2012 11:49:57 +0000 |
parents | |
children | 4bd3d8bbb60c |
comparison
equal
deleted
inserted
replaced
2637:baaf7d125c43 | 2638:ccad7a6ddaa4 |
---|---|
1 package de.intevation.flys.artifacts.model; | |
2 | |
3 import de.intevation.flys.artifacts.states.DefaultState.ComputeType; | |
4 | |
5 public class WSPLGENLayerFacet | |
6 extends WMSLayerFacet | |
7 { | |
8 public WSPLGENLayerFacet() { | |
9 } | |
10 | |
11 | |
12 public WSPLGENLayerFacet(int index, String name, String description) { | |
13 this(index, name, description, ComputeType.FEED, null, null); | |
14 } | |
15 | |
16 | |
17 public WSPLGENLayerFacet( | |
18 int index, | |
19 String name, | |
20 String description, | |
21 ComputeType type, | |
22 String stateId, | |
23 String hash | |
24 ) { | |
25 super(index, name, description, type, stateId, hash); | |
26 } | |
27 | |
28 public WSPLGENLayerFacet( | |
29 int index, | |
30 String name, | |
31 String description, | |
32 ComputeType type, | |
33 String stateId, | |
34 String hash, | |
35 String url | |
36 ) { | |
37 super(index, name, description, type, stateId, hash, url); | |
38 } | |
39 | |
40 | |
41 @Override | |
42 public boolean isQueryable() { | |
43 return true; | |
44 } | |
45 } |