blob: ff69f9ab575a9cb05446090e4c5f318362adace2 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright (c) 1997-2018 Oracle and/or its affiliates. All rights reserved.
Copyright 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.
-->
<mbeans-descriptors>
<mbean name="StandardManager"
description="Standard implementation of the Manager interface"
domain="Catalina"
group="Manager"
type="org.apache.catalina.session.StandardManager">
<attribute name="algorithm"
description="The message digest algorithm to be used when generating
session identifiers"
type="java.lang.String"/>
<attribute name="randomFile"
description="File source of random - /dev/urandom or a pipe"
type="java.lang.String"/>
<attribute name="className"
description="Fully qualified class name of the managed object"
type="java.lang.String"
writeable="false"/>
<attribute name="debug"
description="The debugging detail level for this component"
type="int"/>
<attribute name="distributable"
description="The distributable flag for Sessions created by this
Manager"
type="boolean"/>
<attribute name="entropy"
description="A String initialization parameter used to increase the
entropy of the initialization of our random number
generator"
type="java.lang.String"/>
<attribute name="maxActiveSessions"
description="The maximum number of active Sessions allowed, or -1
for no limit"
type="int"/>
<attribute name="maxInactiveInterval"
description="The default maximum inactive interval for Sessions
created by this Manager"
type="int"/>
<attribute name="sessionIdLength"
description="The session id length (in bytes) of Sessions
created by this Manager"
type="int"/>
<attribute name="name"
description="The descriptive name of this Manager implementation
(for logging)"
type="java.lang.String"
writeable="false"/>
<attribute name="pathname"
description="Path name of the disk file in which active sessions"
type="java.lang.String"/>
<attribute name="activeSessions"
description="Number of active sessions at this moment"
type="int"
writeable="false"/>
<attribute name="sessionCount"
description="Total number of sessions created by this manager"
type="int" />
<attribute name="maxActive"
description="Maximum number of active sessions so far"
type="int" />
<attribute name="sessionMaxAliveTimeSeconds"
description="Longest time an expired session had been alive"
type="int" />
<attribute name="sessionAverageAliveTimeSeconds"
description="Average time an expired session had been alive"
type="int" />
<attribute name="rejectedSessions"
description="Number of sessions we rejected due to maxActive beeing reached"
type="int" />
<attribute name="expiredSessions"
description="Number of sessions that expired ( doesn't include explicit invalidations )"
type="int" />
<attribute name="processingTime"
description="Time spent doing housekeeping and expiration"
type="long" />
<attribute name="duplicates"
description="Number of duplicated session ids generated"
type="int" />
<operation name="listSessionIds"
description="Return the list of active session ids"
impact="ACTION"
returnType="java.lang.String">
</operation>
<operation name="getSessionAttribute"
description="Return a session attribute"
impact="ACTION"
returnType="java.lang.String">
<parameter name="sessionId"
description="Id of the session"
type="java.lang.String"/>
<parameter name="key"
description="key of the attribute"
type="java.lang.String"/>
</operation>
<operation name="getSession"
description="Get information about a session"
impact="ACTION"
returnType="java.util.HashMap">
<parameter name="sessionId"
description="Id of the session"
type="java.lang.String"/>
</operation>
<operation name="expireSession"
description="Expire a session"
impact="ACTION"
returnType="void">
<parameter name="sessionId"
description="Id of the session"
type="java.lang.String"/>
</operation>
<operation name="getLastAccessedTime"
description="Get the last access time"
impact="ACTION"
returnType="java.lang.String">
<parameter name="sessionId"
description="Id of the session"
type="java.lang.String"/>
</operation>
</mbean>
</mbeans-descriptors>