📄 lists.java
字号:
/*
* Copyright 2001-2002,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.webapp.admin;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.management.MBeanServer;
import javax.management.ObjectName;
/**
* General purpose utility methods to create lists of objects that are
* commonly required in building the user interface. In all cases, if there
* are no matching elements, a zero-length list (rather than <code>null</code>)
* is returned.
*
* @author Craig R. McClanahan
* @author Amy Roh
* @version $Revision: 302986 $ $Date: 2004-06-27 22:14:52 -0400 (Sun, 27 Jun 2004) $
*/
public class Lists {
// ----------------------------------------------------------- Constructors
/**
* Protected constructor to prevent instantiation.
*/
protected Lists() { }
// ------------------------------------------------------- Static Variables
/**
* Precomputed list of verbosity level labels and values.
*/
private static List verbosityLevels = new ArrayList();
static {
verbosityLevels.add(new LabelValueBean("0", "0"));
verbosityLevels.add(new LabelValueBean("1", "1"));
verbosityLevels.add(new LabelValueBean("2", "2"));
verbosityLevels.add(new LabelValueBean("3", "3"));
verbosityLevels.add(new LabelValueBean("4", "4"));
}
/**
* Precomputed list of (true,false) labels and values.
*/
private static List booleanValues = new ArrayList();
static {
booleanValues.add(new LabelValueBean("True", "true"));
booleanValues.add(new LabelValueBean("False", "false"));
}
/**
* Precomputed list of clientAuth lables and values.
*/
private static List clientAuthValues = new ArrayList();
static {
clientAuthValues.add(new LabelValueBean("True","true"));
clientAuthValues.add(new LabelValueBean("False","false"));
clientAuthValues.add(new LabelValueBean("Want","want"));
}
// --------------------------------------------------------- Public Methods
/**
* Return a <code>List</code> of {@link LabelValueBean}s for the legal
* settings for <code>verbosity</code> properties.
*/
public static List getVerbosityLevels() {
return (verbosityLevels);
}
/**
* Return a <code>List</code> of {@link LabelValueBean}s for the legal
* settings for <code>boolean</code> properties.
*/
public static List getBooleanValues() {
return (booleanValues);
}
/**
* Return a <code>List</code> of {@link LabelValueBean}s for the legal
* settings for <code>clientAuth</code> properties.
*/
public static List getClientAuthValues() {
return (clientAuthValues);
}
/**
* Return a list of <code>Connector</code> object name strings
* for the specified <code>Service</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param service Object name of the service for which to select connectors
*
* @exception Exception if thrown while retrieving the list
*/
public static List getConnectors(MBeanServer mbserver, ObjectName service)
throws Exception {
StringBuffer sb = new StringBuffer(service.getDomain());
sb.append(":type=Connector,*");
ObjectName search = new ObjectName(sb.toString());
ArrayList connectors = new ArrayList();
Iterator names = mbserver.queryNames(search, null).iterator();
while (names.hasNext()) {
connectors.add(names.next().toString());
}
Collections.sort(connectors);
return (connectors);
}
/**
* Return a list of <code>Connector</code> object name strings
* for the specified <code>Service</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param service Object name of the service for which to select connectors
*
* @exception Exception if thrown while retrieving the list
*/
public static List getConnectors(MBeanServer mbserver, String service)
throws Exception {
return (getConnectors(mbserver, new ObjectName(service)));
}
/**
* Return a list of <code>Context</code> object name strings
* for the specified <code>Host</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param host Object name of the host for which to select contexts
*
* @exception Exception if thrown while retrieving the list
*/
public static List getContexts(MBeanServer mbserver, ObjectName host)
throws Exception {
StringBuffer sb = new StringBuffer(host.getDomain());
sb.append(":j2eeType=WebModule,*");
ObjectName search = new ObjectName(sb.toString());
ArrayList contexts = new ArrayList();
Iterator names = mbserver.queryNames(search, null).iterator();
String name = null;
ObjectName oname = null;
String hostPrefix = "//"+host.getKeyProperty("host");
String hostAttr = null;
while (names.hasNext()) {
name = names.next().toString();
oname = new ObjectName(name);
hostAttr = oname.getKeyProperty("name");
if (hostAttr.startsWith(hostPrefix)) {
contexts.add(name);
}
}
Collections.sort(contexts);
return (contexts);
}
/**
* Return a list of <code>DefaultContext</code> object name strings
* for the specified <code>Host</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param container Object name of the container for which to select default
* contexts
* @param containerType The type of the container for which to select
* default contexts
*
* @exception Exception if thrown while retrieving the list
*/
public static List getDefaultContexts(MBeanServer mbserver, String
container) throws Exception {
return (getDefaultContexts(mbserver, new ObjectName(container)));
}
/**
* Return a list of <code>DefaultContext</code> object name strings
* for the specified <code>Host</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param container Object name of the container for which to select default
* contexts
* @param containerType The type of the container for which to select
* default contexts
*
* @exception Exception if thrown while retrieving the list
*/
public static List getDefaultContexts(MBeanServer mbserver, ObjectName
container) throws Exception {
// FIXME
StringBuffer sb = new StringBuffer(container.getDomain());
sb.append(":type=DefaultContext");
String type = container.getKeyProperty("type");
String host = container.getKeyProperty("host");
if ("Host".equals(type)) {
host = container.getKeyProperty("host");
}
if (host != null) {
sb.append(",host=");
sb.append(host);
}
ObjectName search = new ObjectName(sb.toString());
ArrayList defaultContexts = new ArrayList();
Iterator names = mbserver.queryNames(search, null).iterator();
while (names.hasNext()) {
String name = names.next().toString();
defaultContexts.add(name);
}
Collections.sort(defaultContexts);
return (defaultContexts);
}
/**
* Return a list of <code>Context</code> object name strings
* for the specified <code>Host</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param host Object name of the host for which to select contexts
*
* @exception Exception if thrown while retrieving the list
*/
public static List getContexts(MBeanServer mbserver, String host)
throws Exception {
return (getContexts(mbserver, new ObjectName(host)));
}
/**
* Return a list of <code>Host</code> object name strings
* for the specified <code>Service</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param service Object name of the service for which to select hosts
*
* @exception Exception if thrown while retrieving the list
*/
public static List getHosts(MBeanServer mbserver, ObjectName service)
throws Exception {
StringBuffer sb = new StringBuffer(service.getDomain());
sb.append(":type=Host,*");
ObjectName search = new ObjectName(sb.toString());
ArrayList hosts = new ArrayList();
Iterator names = mbserver.queryNames(search, null).iterator();
while (names.hasNext()) {
hosts.add(names.next().toString());
}
Collections.sort(hosts);
return (hosts);
}
/**
* Return a list of <code>Host</code> object name strings
* for the specified <code>Service</code> object name.
*
* @param mbserver MBeanServer from which to retrieve the list
* @param service Object name of the service for which to select hosts
*
* @exception Exception if thrown while retrieving the list
*/
public static List getHosts(MBeanServer mbserver, String service)
throws Exception {
return (getHosts(mbserver, new ObjectName(service)));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -