ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/mbeans/ServiceMBean.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/mbeans/ServiceMBean.java
Status
scanned
Type
file
Name
ServiceMBean.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
4297 (4.2 KB)
MD5
874a16562eeb174b6cb722b9cf88a1ab
SHA1
88ee11877fe0205df39692d23dd29275f03ddde4
SHA256
2c501c90aa5b71dc1ec086b49a6dd69cbd2e187b266a4653943f5e4b7051af16
SHA512

      
    
SHA1_git
b60732fb9e58f32f253122bed422ebbe49dbf197
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ServiceMBean.java | 4.2 KB |

/* * 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; } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
26.15
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9