Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/LayerInfo.java @ 1131:effe8f945c93
Create WMSLayerFacets for the WSPLGEN results after we have started a WSPLGEN job.
flys-artifacts/trunk@2646 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 05 Sep 2011 16:08:19 +0000 |
parents | da3c3e286c88 |
children | bcf70a452646 |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import java.io.File; public class LayerInfo { protected String data; protected String type; protected String identifier; protected String title; public LayerInfo(File data, String type, String identifier, String title) { this.data = data.getName(); this.type = type; this.identifier = identifier; this.title = title; } public String getData() { return data; } public String getType() { return type; } public String getIdentifier() { return identifier; } public String getTitle() { return title; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :