1 21 22 package org.objectweb.jonas.webapp.jonasadmin.joramplatform; 23 24 import javax.servlet.http.HttpServletRequest ; 25 26 import org.apache.struts.action.ActionErrors; 27 import org.apache.struts.action.ActionForm; 28 import org.apache.struts.action.ActionMapping; 29 30 34 35 public final class JoramRemoteServerForm extends ActionForm { 36 37 39 private String serverId = null; 40 41 43 44 public String getServerId() { 45 return serverId; 46 } 47 48 public void setServerId(String serverId) { 49 this.serverId = serverId; 50 } 51 52 53 55 61 public void reset(ActionMapping mapping, HttpServletRequest request) { 62 63 serverId = null; 64 65 } 66 67 77 public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { 78 return new ActionErrors(); 79 } 80 81 } 82 | Popular Tags |