1 16 17 package org.apache.webapp.admin.service; 18 19 20 import javax.servlet.http.HttpServletRequest ; 21 import org.apache.struts.action.ActionForm; 22 import org.apache.struts.action.ActionMapping; 23 24 25 31 32 public class ServicesForm extends ActionForm { 33 34 35 37 38 41 private String services[] = new String [0]; 42 43 public String [] getServices() { 44 return (this.services); 45 } 46 47 public void setServices(String services[]) { 48 this.services = services; 49 } 50 51 52 54 55 61 public void reset(ActionMapping mapping, HttpServletRequest request) { 62 63 this.services = new String [0]; 64 65 } 66 67 68 } 69 | Popular Tags |