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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<!DOCTYPE mbeans-descriptors PUBLIC
"-//Apache Software Foundation//DTD Model MBeans Configuration File"
"http://jakarta.apache.org/commons/dtds/mbeans-descriptors.dtd">
<mbeans-descriptors>
<mbean name="ContextConfig"
description="Startup event listener for a Context that configures the properties of that Context, and the associated defined servlets"
domain="Catalina"
group="Listener"
type="org.apache.catalina.startup.ContextConfig">
<attribute name="className"
description="Fully qualified class name of the managed object"
type="java.lang.String"
writeable="false"/>
<attribute name="defaultContextXml"
description="The location of the default context file"
type="java.lang.String"/>
<attribute name="defaultWebXml"
description="The location of the default deployment descriptor"
type="java.lang.String"/>
</mbean>
<mbean name="EngineConfig"
description="Startup event listener for an Engine that configures the properties of that Engine, and the associated defined contexts"
domain="Catalina"
group="Listener"
type="org.apache.catalina.startup.EngineConfig">
<attribute name="className"
description="Fully qualified class name of the managed object"
type="java.lang.String"
writeable="false"/>
</mbean>
<mbean name="HostConfig"
description="Startup event listener for a Host that configures the properties of that Host, and the associated defined contexts"
domain="Catalina"
group="Listener"
type="org.apache.catalina.startup.HostConfig">
<attribute name="className"
description="Fully qualified class name of the managed object"
type="java.lang.String"
writeable="false"/>
<attribute name="configBaseName"
description="The base directory for Context configuration files"
type="java.lang.String"
writeable="false" />
<attribute name="contextClass"
description="The Java class name of the Context implementation we should use"
type="java.lang.String"/>
<attribute name="copyXML"
description="The copy XML config file flag for this component"
is="true"
type="boolean"/>
<attribute name="deployXML"
description="The deploy XML config file flag for this component"
is="true"
type="boolean"/>
<attribute name="unpackWARs"
description="The unpack WARs flag"
is="true"
type="boolean"/>
<operation name="tryAddServiced"
description="Add a web application to the serviced list to show it is being serviced by another component returning true if the application was added and false if the application was already being serviced"
impact="ACTION"
returnType="boolean">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="addServiced"
description="DEPRECATED: Add a web application to the serviced list to show it is being serviced by another component"
impact="ACTION"
returnType="void">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="check"
description="Check a web application name for updates"
impact="ACTION"
returnType="void">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="checkUndeploy"
description="Undeploy any old versions of applications deployed using parallel deployment that have no active sessions"
impact="ACTION"
returnType="void">
</operation>
<operation name="getDeploymentTime"
description="Get the instant where an application was deployed"
impact="ACTION"
returnType="long">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="isDeployed"
description="Was this web application deployed by this component"
impact="ACTION"
returnType="boolean">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="isServiced"
description="DEPRECATED: Is a web application serviced by another component"
impact="ACTION"
returnType="boolean">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="manageApp"
description="Add a web application managed externally"
impact="ACTION"
returnType="void">
<parameter name="context"
description="Context to add"
type="org.apache.catalina.Context" />
</operation>
<operation name="removeServiced"
description="Remove a web application from the serviced list to show it isn't serviced by another component"
impact="ACTION"
returnType="void">
<parameter name="name"
description="Application name"
type="java.lang.String"/>
</operation>
<operation name="unmanageApp"
description="Remove a web application from checks"
impact="ACTION"
returnType="void">
<parameter name="contextPath"
description="The application path"
type="java.lang.String" />
</operation>
</mbean>
</mbeans-descriptors>
|