| Package | com.adobe.solutions.exm.expression | 
| Interface | public interface IExpressionService | 
| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Méthodes publiques 
| Méthode | Défini par | ||
|---|---|---|---|
		 Creates a new expression in the expression repository.  | IExpressionService | ||
		 Deletes an expression from the expression repository.  | IExpressionService | ||
		 Fires an asynchronous operation for retrieving a given expression from the expression repository.  | IExpressionService | ||
		 Fires an asynchronous operation for retrieving the list of available expressions from the expression repository.  | IExpressionService | ||
		 Fires an asynchronous operation for retrieving the list of available expressions in the repository which match
		 the given search term.  | IExpressionService | ||
		 Updates an expression in the expression repository.  | IExpressionService | ||
Détails de la méthode
createExpression | () | méthode | 
 public function createExpression(expr:ExpressionVO):mx.rpc:AsyncToken| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Creates a new expression in the expression repository.
Paramètres
expr:ExpressionVO — The expression to be created.
		  | 
mx.rpc:AsyncToken — An RPC token which dispatches a ResultEvent when the create operation completes successfully, or a
		 FaultEvent if the operation fails.
		  | 
deleteExpression | () | méthode | 
 public function deleteExpression(expr:ExpressionVO):mx.rpc:AsyncToken| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Deletes an expression from the expression repository.
Paramètres
expr:ExpressionVO — The expression to be delete.
		  | 
mx.rpc:AsyncToken — An RPC token which dispatches a ResultEvent when the delete operation completes successfully, or a
		 FaultEvent if the operation fails.
		  | 
getExpression | () | méthode | 
 public function getExpression(exprId:String):mx.rpc:AsyncToken| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Fires an asynchronous operation for retrieving a given expression from the expression repository.
Paramètres
exprId:String — The unique ID of the expression to be retrieved.
		  | 
mx.rpc:AsyncToken — An RPC token which dispatches a ResultEvent when the retrieval operation completes successfully, or a
		 FaultEvent if the operation fails. If the operation succeeds, the 'result' property of the ResultEvent contains
		 an ExpressionVO instance corresponding to the retrieved expression.
		  | 
listExpressions | () | méthode | 
 public function listExpressions():mx.rpc:AsyncToken| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Fires an asynchronous operation for retrieving the list of available expressions from the expression repository.
Valeur renvoyéemx.rpc:AsyncToken — An RPC token which dispatches a ResultEvent when the retrieval operation completes successfully, or a
		 FaultEvent if the operation fails. If the operation succeeds, the 'result' property of the ResultEvent contains
		 a list of ExpressionVO instances corresponding to the expressions available in the repository.
		  | 
searchExpressions | () | méthode | 
 public function searchExpressions(searchTerm:String):mx.rpc:AsyncToken| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Fires an asynchronous operation for retrieving the list of available expressions in the repository which match the given search term.
Paramètres
searchTerm:String — The search term to be used for filtering expressions.
		  | 
mx.rpc:AsyncToken — An RPC token which dispatches a ResultEvent when the retrieval operation completes successfully, or a
		 FaultEvent if the operation fails. If the operation succeeds, the 'result' property of the ResultEvent contains
		 a list of ExpressionVO instances corresponding to the expressions in the repository which match the given search term.
		  | 
updateExpression | () | méthode | 
 public function updateExpression(expr:ExpressionVO):mx.rpc:AsyncToken| Version du langage: | ActionScript 3.0 | 
| Version du produit: | Bloc de création Expression Manager 10 | 
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 | 
Updates an expression in the expression repository.
Paramètres
expr:ExpressionVO — The expression to be updated.
		  | 
mx.rpc:AsyncToken — An RPC token which dispatches a ResultEvent when the update operation completes successfully, or a
		 FaultEvent if the operation fails.
		  | 
Tue Jun 12 2018, 09:30 AM Z