1 /**2 * JOnAS: Java(TM) Open Application Server3 * Copyright (C) 1999 Bull S.A.4 * Contact: jonas-team@objectweb.org5 *6 * This library is free software; you can redistribute it and/or7 * modify it under the terms of the GNU Lesser General Public8 * License as published by the Free Software Foundation; either9 * 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 of13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU14 * Lesser General Public License for more details.15 *16 * You should have received a copy of the GNU Lesser General Public17 * License along with this library; if not, write to the Free Software18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-130719 * USA20 */21 22 package org.objectweb.jonas.webapp.jonasadmin.joramplatform;23 24 import java.io.IOException ;25 import java.util.ArrayList ;26 import java.util.Collections ;27 28 import javax.management.ObjectName ;29 import javax.servlet.ServletException ;30 import javax.servlet.http.HttpServletRequest ;31 import javax.servlet.http.HttpServletResponse ;32 33 import org.apache.struts.action.ActionForm;34 import org.apache.struts.action.ActionForward;35 import org.apache.struts.action.ActionMapping;36 37 import org.objectweb.jonas.jmx.JonasManagementRepr;38 import org.objectweb.jonas.jmx.JonasObjectName;39 import org.objectweb.jonas.webapp.jonasadmin.WhereAreYou;40 import org.objectweb.jonas.webapp.jonasadmin.service.ejb.EjbItem;41 import org.objectweb.jonas.webapp.jonasadmin.service.ejb.EjbItemByNameComparator;42 43 /**44 * @author Frederic MAISTRE45 */46 47 public class EditJoramUserAction extends EditJoramBaseAction {48 49 // --------------------------------------------------------- Public Methods50 51 public ActionForward executeAction(ActionMapping pMapping, ActionForm pForm52 , HttpServletRequest pRequest, HttpServletResponse pResponse)53 throws IOException , ServletException {54 55 56 57 // Forward to the jsp.58 return (pMapping.findForward("JoramUser"));59 }60 61 }62