包 | com.adobe.icc.services.letter |
接口 | public interface ILetterService extends IEventDispatcher |
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
方法 | 由以下参数定义 | ||
---|---|---|---|
Activates a letter template
| ILetterService | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。 | IEventDispatcher | ||
Creates a copy of an existing letter. | ILetterService | ||
Allows creating a new Letter template entry. | ILetterService | ||
Allows creating a test version of a letter template entry. | ILetterService | ||
Allows deleting of a letter. | ILetterService | ||
将事件调度到事件流中。 | IEventDispatcher | ||
Method description: Returns a list of available letter templates. | ILetterService | ||
Retrieves a letter given its unique identifier. | ILetterService | ||
Retrieves a letter given its unique identifier and date on which the letter was published. | ILetterService | ||
getUsedDataModules(letterId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken
Retrieve the list of modules that is used by the Letter identified by the given letterId. | ILetterService | ||
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。 | IEventDispatcher | ||
Determines if the specified letter exists. | ILetterService | ||
Mark as ready to publish the Letter identified by the given letterID. | ILetterService | ||
Publish the Letter identified by the given letterID. | ILetterService | ||
从 EventDispatcher 对象中删除侦听器。 | IEventDispatcher | ||
Reverts the letter to the last published version. | ILetterService | ||
Allows modifying a letter template entry which has a state test. | ILetterService | ||
检查是否用此 EventDispatcher 对象或其任何祖代为指定事件类型注册了事件侦听器。 | IEventDispatcher |
activateLetter | () | 方法 |
public function activateLetter(letterID:String, updateDependencies:Boolean = false):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Activates a letter template
参数
letterID:String — The ID (GUID) of the letter to activate
| |
updateDependencies:Boolean (default = false ) — Whether to replace/use this new activated version in the dependencies
|
com.adobe.icc.token:IAsyncToken — the updated Letter
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
copyLetter | () | 方法 |
public function copyLetter(oldLetterID:String, newLetter:Letter):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Creates a copy of an existing letter.
参数
oldLetterID:String — Identifier if the letter to be copied
| |
newLetter:Letter — may optionally specify a new test data file
|
com.adobe.icc.token:IAsyncToken — New letter object (the copy).
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
createLetter | () | 方法 |
public function createLetter(letter:Letter):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Allows creating a new Letter template entry.
参数
letter:Letter — Letter object to be created
|
com.adobe.icc.token:IAsyncToken — The new Letter object on success
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
createTestLetter | () | 方法 |
public function createTestLetter(letterID:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Allows creating a test version of a letter template entry.
参数
letterID:String — The ID (GUID) of an existing Letter to duplicate as a test version
|
com.adobe.icc.token:IAsyncToken — The new Letter object
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
deleteLetter | () | 方法 |
public function deleteLetter(letterId:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Allows deleting of a letter.
参数
letterId:String — The ID (GUID) of the letter to delete
|
com.adobe.icc.token:IAsyncToken — Return without any value if delete was successful
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
getAllLetters | () | 方法 |
public function getAllLetters(query:Query = null):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Method description: Returns a list of available letter templates.
参数
query:Query (default = null ) — Query specifying the statements for filtering search results.
|
com.adobe.icc.token:IAsyncToken — ArrayCollection containing the letter records as Letter objects
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
getLetter | () | 方法 |
public function getLetter(letterId:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Retrieves a letter given its unique identifier.
参数
letterId:String — The unique identifier of the letter to retrieve (i.e. it's GUID).
|
com.adobe.icc.token:IAsyncToken — The result event's result data will be a Letter object for the specified letter, if the ID was valid.
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
getLetterByVersion | () | 方法 |
public function getLetterByVersion(letterId:String, date:Date):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Retrieves a letter given its unique identifier and date on which the letter was published.
参数
letterId:String — The unique identifier of the letter to retrieve (i.e. it's GUID).
| |
date:Date — The date on which the letter was published
|
com.adobe.icc.token:IAsyncToken — The result event's result data will be a Letter object for the specified letter, if the ID was valid.
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
getUsedDataModules | () | 方法 |
public function getUsedDataModules(letterId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Retrieve the list of modules that is used by the Letter identified by the given letterId
.
参数
letterId:String — ID (GUID) of the Letter, for which the used modules are to be fetched.
| |
fetchIndirectReferences:Boolean (default = false ) — True, if you wish to fetch the modules that are directly or indirectly used by this Letter.
For example, if a Text T1 is used in a List L1, and List L1 is used in Letter L1, the List would contain
(T1 and L1), for the Letter L1. If false, the List would contain only L1.
|
com.adobe.icc.token:IAsyncToken — List of modules that is used by the given Letter.
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
letterExists | () | 方法 |
public function letterExists(name:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Determines if the specified letter exists.
参数
name:String — Version-independent name of the letter.
|
com.adobe.icc.token:IAsyncToken — Boolean which is true if the letter exists; false if not.
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
markReadyToPublish | () | 方法 |
public function markReadyToPublish(letterId:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Mark as ready to publish the Letter identified by the given letterID
.
参数
letterId:String — ID of the Letter
|
com.adobe.icc.token:IAsyncToken — Letter object marked for publishing
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
publishLetter | () | 方法 |
public function publishLetter(letterId:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Publish the Letter identified by the given letterID
.
参数
letterId:String — ID of the Letter
|
com.adobe.icc.token:IAsyncToken — published Letter object
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
revertToLastPublish | () | 方法 |
public function revertToLastPublish(fragmentLayoutId:String):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Reverts the letter to the last published version. If letter is not published, it is removed from repository.
参数
fragmentLayoutId:String — ID of the Letter
|
com.adobe.icc.token:IAsyncToken — Reverted letter object
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
updateLetter | () | 方法 |
public function updateLetter(letter:Letter):com.adobe.icc.token:IAsyncToken
语言版本: | ActionScript 3.0 |
产品版本: | Asset Composer Building Block 10 |
运行时版本: | AIR (unsupported), Flash Player 10.2 |
Allows modifying a letter template entry which has a state test.
参数
letter:Letter — Letter object to be updated
|
com.adobe.icc.token:IAsyncToken — Updated letter object.
|
引发
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
Tue Jun 12 2018, 11:04 AM Z