JtmServiceMonitorForm.java

00001 /*
00002  * JOnAS: Java(TM) Open Application Server
00003  * Copyright (C) 1999 Bull S.A.
00004  * Contact: jonas-team@objectweb.org
00005  *
00006  * This library is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Lesser General Public
00008  * License as published by the Free Software Foundation; either
00009  * version 2.1 of the License, or any later version.
00010  *
00011  * This library is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  * Lesser General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU Lesser General Public
00017  * License along with this library; if not, write to the Free Software
00018  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
00019  * USA
00020  *
00021  * --------------------------------------------------------------------------
00022  * $Id: JtmServiceMonitorForm.java,v 1.1 2004/06/08 21:27:15 tonyortiz Exp $
00023  * --------------------------------------------------------------------------
00024  */
00025 
00026 package org.objectweb.jonas.webapp.jonasadmin.service.jtm;
00027 
00028 import java.net.URL;
00029 import java.util.ArrayList;
00030 import java.util.Collections;
00031 import java.util.Enumeration;
00032 import java.util.Properties;
00033 
00034 import javax.servlet.http.HttpServletRequest;
00035 
00036 import org.apache.struts.action.ActionErrors;
00037 import org.apache.struts.action.ActionForm;
00038 import org.apache.struts.action.ActionMapping;
00039 import org.objectweb.jonas.webapp.jonasadmin.JonasAdminJmx;
00040 import org.objectweb.jonas.webapp.jonasadmin.common.LabelValueByLabelComparator;
00041 import org.objectweb.jonas.webapp.taglib.LabelValueBean;
00042 
00043 
00047 public class JtmServiceMonitorForm extends ActionForm {
00048 
00049 // --------------------------------------------------------- Properties variables
00050 
00051 //    private String name = null;
00052 //    private String date = null;
00053 //    private String transaction = null;
00054 //    private String resource = null;
00055 //    private String state = null;
00056 
00057 // --------------------------------------------------------- Properties Methods
00058 
00059 //    public String getName() {
00060 //        return name;
00061 //    }
00062 
00063 //    public void setName(String name) {
00064 //        this.name = name;
00065 //    }
00066 
00067 //    public String getDate() {
00068 //        return date;
00069 //    }
00070 
00071 //    public void setTime(String date) {
00072 //        this.date = date;
00073 //    }
00074 
00075 //    public String getTransaction() {
00076 //        return transaction;
00077 //    }
00078 
00079 //    public void setTransaction(String transaction) {
00080 //        this.transaction = transaction;
00081 //    }
00082 
00083 //    public String getResource() {
00084 //        return resource;
00085 //    }
00086 
00087 //    public void setResource(String resource) {
00088 //        this.resource = resource;
00089 //    }
00090 
00091 //    public String getState() {
00092 //        return state;
00093 //    }
00094 
00095 //    public void setState(String state) {
00096 //        this.state = state;
00097 //    }
00098 
00099 // ------------------------------------------------------------- Public Methods
00100 
00107     public void reset(ActionMapping mapping, HttpServletRequest request) {
00108     }
00109 
00120     public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
00121         return new ActionErrors();
00122     }
00123 }

Generated on Tue Feb 15 15:05:33 2005 for JOnAS by  doxygen 1.3.9.1