01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.geronimo.console.threads;
17:
18: import javax.portlet.ActionResponse;
19: import javax.portlet.PortletRequest;
20: import javax.portlet.PortletSession;
21: import org.apache.commons.logging.Log;
22: import org.apache.commons.logging.LogFactory;
23: import org.apache.geronimo.console.MultiPageAbstractHandler;
24: import org.apache.geronimo.console.MultiPageModel;
25:
26: /**
27: * Base class for portlet helpers
28: *
29: * @version $Rev: 476061 $ $Date: 2006-11-16 22:36:50 -0800 (Thu, 16 Nov 2006) $
30: */
31: public abstract class AbstractThreadHandler extends
32: MultiPageAbstractHandler {
33: private final static Log log = LogFactory
34: .getLog(AbstractThreadHandler.class);
35: protected final static String ABSTRACT_NAME_PARAMETER = "abstractName";
36:
37: protected final static String LIST_MODE = "list";
38: protected final static String MONITOR_MODE = "monitor";
39:
40: public AbstractThreadHandler(String mode, String viewName) {
41: super (mode, viewName);
42: }
43:
44: public static class ThreadPoolData implements MultiPageModel {
45: // Used for editing an existing thread pool
46: private String abstractName;
47:
48: public ThreadPoolData(PortletRequest request) {
49: abstractName = request
50: .getParameter(AbstractThreadHandler.ABSTRACT_NAME_PARAMETER);
51: }
52:
53: public void save(ActionResponse response, PortletSession session) {
54: if (!isEmpty(abstractName))
55: response.setRenderParameter(
56: AbstractThreadHandler.ABSTRACT_NAME_PARAMETER,
57: abstractName);
58: }
59: }
60: }
|