| パッケージ | com.adobe.dct.service | 
| インターフェイス | public interface DataDictionaryRegistryService | 
| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
| メソッド | 定義元 | ||
|---|---|---|---|
| createDataDictionary(dataDictionary:DataDictionary, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Creates a data dictionary in a persistent store and returns the unique identifier of the stored data dictionary. | DataDictionaryRegistryService | ||
| deleteDataDictionary(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Deletes a data dictionary from the persistent store. | DataDictionaryRegistryService | ||
| getAllDataDictionaries(clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Returns all data dictionaries. | DataDictionaryRegistryService | ||
| getAllDataDictionaryReferences(clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Returns all data dictionary references. | DataDictionaryRegistryService | ||
| getDataDictionaries(searchFilter:DataDictionarySearchFilter, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Returns all data dictionaries that meet the criteria specified in a search filter. | DataDictionaryRegistryService | ||
| getDataDictionary(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Returns a data dictionary object that corresponds to an identifier. | DataDictionaryRegistryService | ||
| getDataDictionaryReferences(searchFilter:DataDictionarySearchFilter, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Returns all data dictionary references that meet the criteria specified in a search filter. | DataDictionaryRegistryService | ||
| getSystemDataDictionaries(clientHandler:Function = null, errorHandler:Function = null, locale:String = null):mx.rpc:AsyncToken 
		 Returns all system data dictionaries. | DataDictionaryRegistryService | ||
| markReadyToPublish(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Mark the given Data Dictionary read to Publish. | DataDictionaryRegistryService | ||
| publishDataDictionary(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Publish the data dictionary identified by the given dataDictionaryId. | DataDictionaryRegistryService | ||
| revertToLastPublished(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Revert to the last published version of the data dictionary identified by the given dataDictionaryId. | DataDictionaryRegistryService | ||
| updateDataDictionary(dataDictionary:DataDictionary, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken 
		 Updates an existing data dictionary. | DataDictionaryRegistryService | ||
| createDataDictionary | () | メソッド | 
 public function createDataDictionary(dataDictionary:DataDictionary, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Creates a data dictionary in a persistent store and returns the unique identifier of the stored data dictionary.
パラメーター
| dataDictionary:DataDictionary— The DataDictionary object. | |
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the unique identifier of the stored data dictionary. | 
| deleteDataDictionary | () | メソッド | 
 public function deleteDataDictionary(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Deletes a data dictionary from the persistent store.
パラメーター
| dataDictionaryId:String— The identifier of the data dictionary to delete. | |
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to 
		 the server is successful. The value ofResultEvent.resultis null, that is, it does not hold any information. | 
| getAllDataDictionaries | () | メソッド | 
 public function getAllDataDictionaries(clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Returns all data dictionaries.
パラメーター
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the list of data dictionaries. | 
| getAllDataDictionaryReferences | () | メソッド | 
 public function getAllDataDictionaryReferences(clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Returns all data dictionary references.
パラメーター
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the list of data dictionary references. | 
| getDataDictionaries | () | メソッド | 
 public function getDataDictionaries(searchFilter:DataDictionarySearchFilter, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Returns all data dictionaries that meet the criteria specified in a search filter.
パラメーター
| searchFilter:DataDictionarySearchFilter— The criteria for a data dictionary search, such as name or type. | |
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the list of data dictionaries that match the search criteria. | 
| getDataDictionary | () | メソッド | 
 public function getDataDictionary(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Returns a data dictionary object that corresponds to an identifier.
パラメーター
| dataDictionaryId:String—   The unique identifier for the data dictionary. | |
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the data dictionary. | 
| getDataDictionaryReferences | () | メソッド | 
 public function getDataDictionaryReferences(searchFilter:DataDictionarySearchFilter, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Returns all data dictionary references that meet the criteria specified in a search filter.
パラメーター
| searchFilter:DataDictionarySearchFilter— The criteria for a data dictionary search, such as name or type. | |
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the list of data dictionary references that match the search criteria. | 
| getSystemDataDictionaries | () | メソッド | 
 public function getSystemDataDictionaries(clientHandler:Function = null, errorHandler:Function = null, locale:String = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Returns all system data dictionaries.
パラメーター
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | |
| locale:String(default =null)—  The locale that specifies the user's language. This operation is locale-sensitive and uses the locale to customize information for the user. | 
| mx.rpc:AsyncToken— AsyncToken An instance ofmx.rpc.AsyncToken. You can extract the response of the call fromResultEventorFaultEventthrough handler or responder.ResultEvent.resultcontains 
		 the list of system data dictionaries. | 
| markReadyToPublish | () | メソッド | 
 public function markReadyToPublish(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 10 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Mark the given Data Dictionary read to Publish.
パラメーター
| dataDictionaryId:String—   data dictionary identifier | |
| clientHandler:Function(default =null)— This method is called by the service when the asynchronous request completes and the return value has been received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error has been received. | 
| mx.rpc:AsyncToken— DataDictionary | 
| publishDataDictionary | () | メソッド | 
 public function publishDataDictionary(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 10 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
		 Publish the data dictionary identified by the given dataDictionaryId.
		 
		 
パラメーター
| dataDictionaryId:String—   data dictionary identifier | |
| clientHandler:Function(default =null)— This method is called by the service when the asynchronous request completes and the return value has been received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error has been received. | 
| mx.rpc:AsyncToken— DataDictionary | 
| revertToLastPublished | () | メソッド | 
 public function revertToLastPublished(dataDictionaryId:String, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 10 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
		 Revert to the last published version of the data dictionary identified by the given dataDictionaryId.
		 
		 
パラメーター
| dataDictionaryId:String—   data dictionary identifier | |
| clientHandler:Function(default =null)— This method is called by the service when the asynchronous request completes and the return value has been received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error has been received. | 
| mx.rpc:AsyncToken— DataDictionary | 
| updateDataDictionary | () | メソッド | 
 public function updateDataDictionary(dataDictionary:DataDictionary, clientHandler:Function = null, errorHandler:Function = null):mx.rpc:AsyncToken| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Data Dictionary Building Block 9.5 | 
| ランタイムバージョン: | AIR (unsupported), Flash Player 10.2 | 
Updates an existing data dictionary. The data dictionary must have the specified name and identifier.
Name and identifier fields are mandatory for a data dictionary. The data dictionary name is unique and case-insensitive. If the name is not unique, a fault is thrown.
パラメーター
| dataDictionary:DataDictionary—  The data dictionary to update. | |
| clientHandler:Function(default =null)— The method called by the service when the asynchronous request completes and the return value is received. | |
| errorHandler:Function(default =null)— This method is called by a service when the asynchronous request completes and an error is received. | 
| mx.rpc:AsyncToken— AsyncToken A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to 
		 the server is successful. The value ofResultEvent.resultis null, that is, it does not hold any information. | 
Tue Jun 12 2018, 10:34 AM Z