01: /*
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 1999 Bull S.A.
04: * Contact: jonas-team@objectweb.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19: * USA
20: *
21: * --------------------------------------------------------------------------
22: * $Id: SelectedItemsForm.java 3140 2003-08-28 16:25:04Z antonma $
23: * --------------------------------------------------------------------------
24: */
25:
26: package org.objectweb.jonas.webapp.jonasadmin.service.container;
27:
28: import java.util.ArrayList;
29:
30: import javax.servlet.http.HttpServletRequest;
31:
32: import org.apache.struts.action.ActionErrors;
33: import org.apache.struts.action.ActionForm;
34: import org.apache.struts.action.ActionMapping;
35:
36: /**
37: * @author Michel-Ange ANTON
38: */
39: public class SelectedItemsForm extends ActionForm {
40:
41: // --------------------------------------------------------- Constants
42:
43: // --------------------------------------------------------- Properties variables
44: private String action = null;
45: private String[] checkedItems = new String[0];
46: private ArrayList selectedItems = new ArrayList();
47:
48: // --------------------------------------------------------- Public Methods
49:
50: public void reset(ActionMapping mapping, HttpServletRequest request) {
51: checkedItems = new String[0];
52: }
53:
54: public ActionErrors validate(ActionMapping mapping,
55: HttpServletRequest request) {
56: ActionErrors oErrors = new ActionErrors();
57: return oErrors;
58: }
59:
60: public String[] getCheckedItems() {
61: return checkedItems;
62: }
63:
64: public void setCheckedItems(String[] checkedItems) {
65: this .checkedItems = checkedItems;
66: }
67:
68: public String getAction() {
69: return action;
70: }
71:
72: public void setAction(String action) {
73: this .action = action;
74: }
75:
76: public ArrayList getSelectedItems() {
77: return selectedItems;
78: }
79:
80: public void setSelectedItems(ArrayList selectedItems) {
81: this .selectedItems = selectedItems;
82: }
83:
84: // --------------------------------------------------------- Properties Methods
85:
86: }
|