001: /*
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * Initial developer(s): Michel-Ange ANTON
022: * --------------------------------------------------------------------------
023: * $Id: EjbContainersStatisticForm.java 2637 2003-06-20 17:15:42Z antonma $
024: * --------------------------------------------------------------------------
025: */
026:
027: package org.objectweb.jonas.webapp.jonasadmin.service.container;
028:
029: import javax.servlet.http.HttpServletRequest;
030:
031: import org.apache.struts.action.ActionErrors;
032: import org.apache.struts.action.ActionForm;
033: import org.apache.struts.action.ActionMapping;
034:
035: public class EjbContainersStatisticForm extends ActionForm {
036:
037: // --------------------------------------------------------- Properties Variables
038:
039: private int totalCurrentNumberOfCMPType = 0;
040: private int totalCurrentNumberOfSBFType = 0;
041: private int currentNumberOfContainer = 0;
042: private int totalCurrentNumberOfBMPType = 0;
043: private int totalCurrentNumberOfMDBType = 0;
044: private int totalCurrentNumberOfSBLType = 0;
045: private int totalCurrentNumberOfBeanType = 0;
046:
047: // --------------------------------------------------------- Public Methods
048:
049: /**
050: * Reset all properties to their default values.
051: *
052: * @param mapping The mapping used to select this instance
053: * @param request The servlet request we are processing
054: */
055:
056: public void reset(ActionMapping mapping, HttpServletRequest request) {
057: totalCurrentNumberOfCMPType = 0;
058: totalCurrentNumberOfSBFType = 0;
059: currentNumberOfContainer = 0;
060: totalCurrentNumberOfBMPType = 0;
061: totalCurrentNumberOfMDBType = 0;
062: totalCurrentNumberOfSBLType = 0;
063: totalCurrentNumberOfBeanType = 0;
064: }
065:
066: /**
067: * Validate the properties that have been set from this HTTP request,
068: * and return an <code>ActionErrors</code> object that encapsulates any
069: * validation errors that have been found. If no errors are found, return
070: * <code>null</code> or an <code>ActionErrors</code> object with no
071: * recorded error messages.
072: *
073: * @param mapping The mapping used to select this instance
074: * @param request The servlet request we are processing
075: */
076: public ActionErrors validate(ActionMapping mapping,
077: HttpServletRequest request) {
078: ActionErrors oErrors = new ActionErrors();
079: return oErrors;
080: }
081:
082: // --------------------------------------------------------- Properties Methods
083:
084: public int getTotalCurrentNumberOfCMPType() {
085: return totalCurrentNumberOfCMPType;
086: }
087:
088: public int getTotalCurrentNumberOfSBFType() {
089: return totalCurrentNumberOfSBFType;
090: }
091:
092: public int getCurrentNumberOfContainer() {
093: return currentNumberOfContainer;
094: }
095:
096: public int getTotalCurrentNumberOfBMPType() {
097: return totalCurrentNumberOfBMPType;
098: }
099:
100: public int getTotalCurrentNumberOfMDBType() {
101: return totalCurrentNumberOfMDBType;
102: }
103:
104: public int getTotalCurrentNumberOfSBLType() {
105: return totalCurrentNumberOfSBLType;
106: }
107:
108: public int getTotalCurrentNumberOfBeanType() {
109: return totalCurrentNumberOfBeanType;
110: }
111:
112: public void setTotalCurrentNumberOfCMPType(
113: int totalCurrentNumberOfCMPType) {
114: this .totalCurrentNumberOfCMPType = totalCurrentNumberOfCMPType;
115: }
116:
117: public void setTotalCurrentNumberOfSBFType(
118: int totalCurrentNumberOfSBFType) {
119: this .totalCurrentNumberOfSBFType = totalCurrentNumberOfSBFType;
120: }
121:
122: public void setCurrentNumberOfContainer(int currentNumberOfContainer) {
123: this .currentNumberOfContainer = currentNumberOfContainer;
124: }
125:
126: public void setTotalCurrentNumberOfBMPType(
127: int totalCurrentNumberOfBMPType) {
128: this .totalCurrentNumberOfBMPType = totalCurrentNumberOfBMPType;
129: }
130:
131: public void setTotalCurrentNumberOfMDBType(
132: int totalCurrentNumberOfMDBType) {
133: this .totalCurrentNumberOfMDBType = totalCurrentNumberOfMDBType;
134: }
135:
136: public void setTotalCurrentNumberOfSBLType(
137: int totalCurrentNumberOfSBLType) {
138: this .totalCurrentNumberOfSBLType = totalCurrentNumberOfSBLType;
139: }
140:
141: public void setTotalCurrentNumberOfBeanType(
142: int totalCurrentNumberOfBeanType) {
143: this.totalCurrentNumberOfBeanType = totalCurrentNumberOfBeanType;
144: }
145: }
|