1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.catalina.mbeans;
import javax.management.MBeanException;
import org.apache.catalina.Executor;
import org.apache.catalina.Service;
import org.apache.catalina.connector.Connector;
public class ServiceMBean extends BaseCatalinaMBean<Service> {
/**
* Add a new Connector to the set of defined Connectors, and associate it with this Service's Container.
*
* @param address The IP address on which to bind
* @param port TCP port number to listen on
* @param isAjp Create a AJP/1.3 Connector
* @param isSSL Create a secure Connector
*
* @throws MBeanException error creating the connector
*/
public void addConnector(String address, int port, boolean isAjp, boolean isSSL) throws MBeanException {
Service service = doGetManagedResource();
String protocol = isAjp ? "AJP/1.3" : "HTTP/1.1";
Connector connector = new Connector(protocol);
if ((address != null) && (!address.isEmpty())) {
connector.setProperty("address", address);
}
connector.setPort(port);
connector.setSecure(isSSL);
connector.setScheme(isSSL ? "https" : "http");
service.addConnector(connector);
}
/**
* Adds a named executor to the service
*
* @param type Class name of the Executor to be added
*
* @throws MBeanException error creating the executor
*/
public void addExecutor(String type) throws MBeanException {
Service service = doGetManagedResource();
Executor executor = (Executor) newInstance(type);
service.addExecutor(executor);
}
/**
* Find and return the set of Connectors associated with this Service.
*
* @return an array of string representations of the connectors
*
* @throws MBeanException error accessing the associated service
*/
public String[] findConnectors() throws MBeanException {
Service service = doGetManagedResource();
Connector[] connectors = service.findConnectors();
String[] str = new String[connectors.length];
for (int i = 0; i < connectors.length; i++) {
str[i] = connectors[i].toString();
}
return str;
}
/**
* Retrieves all executors.
*
* @return an array of string representations of the executors
*
* @throws MBeanException error accessing the associated service
*/
public String[] findExecutors() throws MBeanException {
Service service = doGetManagedResource();
Executor[] executors = service.findExecutors();
String[] str = new String[executors.length];
for (int i = 0; i < executors.length; i++) {
str[i] = executors[i].toString();
}
return str;
}
/**
* Retrieves executor by name
*
* @param name Name of the executor to be retrieved
*
* @return a string representation of the executor
*
* @throws MBeanException error accessing the associated service
*/
public String getExecutor(String name) throws MBeanException {
Service service = doGetManagedResource();
Executor executor = service.getExecutor(name);
if (executor != null) {
return executor.toString();
} else {
return null;
}
}
}
|