blob: 31beae9c1e73eb16a26cfc45c1549c2293b3beab [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// 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 mx.messaging.management
{
import mx.utils.ObjectUtil;
[RemoteClass(alias='flex.management.jmx.MBeanOperationInfo')]
/**
* Client representation of metadata for a MBean operation.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public class MBeanOperationInfo extends MBeanFeatureInfo
{
/**
* Creates a new instance of an empty MBeanOperationInfo.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public function MBeanOperationInfo()
{
super();
}
/**
* The parameter data types that make up the operation signature.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public var signature:Array;
/**
* The return data type for the operation.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public var returnType:String;
/**
* The impact of the operation. One of four possible values, defined as constants
* for this class.
*
* @see #INFO
* @see #ACTION
* @see #ACTION_INFO
* @see #UNKNOWN
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public var impact:int;
/**
* The operation is purely informational with no side-effects, read-only.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public const INFO:int = 0;
/**
* The operation is write-like, updating the control in some way.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public const ACTION:int = 1;
/**
* The operation is both read-like and write-like, updating the control and returning
* information.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public const ACTION_INFO:int = 2;
/**
* The side-effects for the operation are unknown.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion BlazeDS 4
* @productversion LCDS 3
*/
public const UNKNOWN:int = 3;
}
}