Interface ItemTypeDescriptorService
-
- All Known Implementing Classes:
DefaultItemTypeDescriptorService
public interface ItemTypeDescriptorServiceA service for retrieving Integration Object item type descriptors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<TypeDescriptor>getTypeDescriptor(java.lang.String objCode, java.lang.String objItemCode)Retrieves an item type descriptor.
-
-
-
Method Detail
-
getTypeDescriptor
java.util.Optional<TypeDescriptor> getTypeDescriptor(java.lang.String objCode, java.lang.String objItemCode)
Retrieves an item type descriptor.- Parameters:
objCode- code of the Integration Object containing the item type that needs to be retrieved. This value should match value of an existingIntegrationObjectModel.getCode().objItemCode- code of the integration object item type to be retrieved. This value should match a value of an existingIntegrationObjectItemModel.getCode()- Returns:
- an
Optionalcontaining the specified type descriptor or anOptional.empty(), if such descriptor is not found.
-
-