패키지 | mx.data |
클래스 | public class ManagedOperation |
상속 | ManagedOperation Object |
하위 클래스 | ManagedQuery |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
속성 | 정의 주체 | ||
---|---|---|---|
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
convertResults : Boolean = true
Turns on/off conversion of result element types. | ManagedOperation | ||
dataManager : RPCDataManager
Each ManagedOperation should be a child of an RPCDataManager tag. | ManagedOperation | ||
ignore : Boolean = false
It may be useful in some cases to ignore a particular managed operation. | ManagedOperation | ||
name : String Name of the operation in the service which this is managing. | ManagedOperation | ||
operation : AbstractOperation Stores the service's operation which we are using for this managed operation. | ManagedOperation | ||
parameters : String
A usually optional metadata value which stores the comma separated list of parameter names
for this operation. | ManagedOperation | ||
resultElementType : Class
For operations which return a multi-valued response, this specifies the type of the
elements of the Array or ArrayCollection. | ManagedOperation | ||
resultType : Class
The class of the return type for this operation. | ManagedOperation | ||
type : String
Represents the type of the managed operation. | ManagedOperation |
메서드 | 정의 주체 | ||
---|---|---|---|
Creates a ManagedOperation object. | ManagedOperation | ||
Disables data management for this operation. | ManagedOperation | ||
Enables data management for this operation if it has been disabled previously. | ManagedOperation | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Initializes the managed operation throwing errors for any configuration problems that are
encountered along the way. | ManagedOperation | ||
Invokes the operation on the real service without any management. | ManagedOperation | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
convertResults | 속성 |
public var convertResults:Boolean = true
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Turns on/off conversion of result element types.
기본값: true.
dataManager | 속성 |
dataManager:RPCDataManager
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Each ManagedOperation should be a child of an RPCDataManager tag. This property stores a reference to the parent.
구현
public function get dataManager():RPCDataManager
public function set dataManager(value:RPCDataManager):void
ignore | 속성 |
public var ignore:Boolean = false
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
It may be useful in some cases to ignore a particular managed operation. If so,
you can set this property to true
.
기본값: false.
name | 속성 |
public var name:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Name of the operation in the service which this is managing.
operation | 속성 |
public var operation:AbstractOperation
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Stores the service's operation which we are using for this managed operation.
parameters | 속성 |
parameters:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
A usually optional metadata value which stores the comma separated list of parameter names for this operation.
구현
public function get parameters():String
public function set parameters(value:String):void
resultElementType | 속성 |
public var resultElementType:Class
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
For operations which return a multi-valued response, this specifies the type of the elements of the Array or ArrayCollection.
resultType | 속성 |
public var resultType:Class
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The class of the return type for this operation.
type | 속성 |
public var type:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Represents the type of the managed operation.
Values are: 'create'
, 'update'
,
'delete'
, 'get'
, 'query'
, and 'findItem'
.
기본값: "".
ManagedOperation | () | 생성자 |
public function ManagedOperation(nameParam:String = null, typeParam:String = null)
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Creates a ManagedOperation object. Both name and type are required parameters though they are optional here so this class can be used as an MXML tag.
매개 변수nameParam:String (default = null ) — Name of the operation in the service which this is managing.
| |
typeParam:String (default = null ) — The type of the managed operation. Values are: 'create', 'update',
'delete', 'get', 'query', or 'findItem'.
|
disableManagement | () | 메서드 |
public function disableManagement():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Disables data management for this operation. When management is disabled, the operation is executed as it would be if it were unmanaged.
enableManagement | () | 메서드 |
public function enableManagement():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Enables data management for this operation if it has been disabled previously.
initialize | () | 메서드 |
public function initialize():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Initializes the managed operation throwing errors for any configuration problems that are encountered along the way.
invokeService | () | 메서드 |
public function invokeService(args:Array):mx.rpc:AsyncToken
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Invokes the operation on the real service without any management.
매개 변수
args:Array — arguments for the invocation
|
mx.rpc:AsyncToken — AsyncToken token that may be used to register one or more callback
functions to receive result or fault events from this invocation.
|
Tue Jun 12 2018, 03:17 PM Z