1 package acegifier.web;
2
3 /***
4 * Form backing object for the Acegifier controller.
5 *
6 * @author Luke Taylor
7 * @version $Id: AcegifierForm.java,v 1.1 2005/11/29 02:33:40 benalex Exp $
8 */
9 public class AcegifierForm {
10 private String webXml;
11
12 public String getWebXml() {
13 return webXml;
14 }
15
16 public void setWebXml(String webXml) {
17 this.webXml = webXml;
18 }
19 }