| Home >> All >> org >> acs >> damsel >> client >> [ remove Javadoc ] |
Source code: org/acs/damsel/client/remove/DeleteSchemaCheckForm.java
1 package org.acs.damsel.client.remove; 2 3 import org.apache.struts.action.*; 4 import javax.servlet.http.*; 5 6 public class DeleteSchemaCheckForm extends ActionForm { 7 private String operation; 8 public ActionErrors validate(ActionMapping actionMapping, 9 HttpServletRequest httpServletRequest) { 10 return null; 11 } 12 public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { 13 } 14 public String getOperation() { 15 return operation; 16 } 17 public void setOperation(String operation) { 18 this.operation = operation; 19 } 20 }