01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.vfny.geoserver.form.data;
06:
07: import org.apache.struts.action.ActionForm;
08:
09: public class SLDWizardForm extends ActionForm {
10: private String selectedFeatureTypeName;
11:
12: public String getTypeName() {
13: return selectedFeatureTypeName;
14: }
15:
16: public void setTypeName(String typeName) {
17: this.selectedFeatureTypeName = typeName;
18: }
19: }
|