Package com.orchestranetworks.addon.dama.servicecomponent
package com.orchestranetworks.addon.dama.servicecomponent
Provide classes to call {addon.label} services.
Example of getting UIHttpManagerComponent of the 'Edit digital asset' service:
-
Create a new
EditAssetServiceSpec
:DigitalAssetKey digitalAssetKey = new DigitalAssetKey(anAssetPrimaryKey); Path mediaFieldPath = Path.parse("/root/aTable/aMediaField"); boolean isReadonly = false; EditAssetServiceSpec editAssetServiceSpec = new EditAssetServiceSpec(digitalAssetKey, aDataset, mediaFieldPath, isReadonly);
-
Get
UIHttpManagerComponent
of the 'Edit digital asset' service:UIHttpManagerComponent editServiceComponent = EditAssetServiceComponent.getEditDigitalAssetService(editAssetServiceSpec);
-
ClassDescriptionProvides a method to create an instance of
UIHttpManagerComponent
in order to call the EBX® user interface to display the 'Edit digital asset' service.Defines the features of the 'Edit digital asset' service.