Interface PayloadInfoBuilderManager
-
@ProviderType public interface PayloadInfoBuilderManager
The manager responsible for querying the differentPayloadInfoBuilder's to find one capable of providing information about the payload represented by theInboxItemor located at the provided path.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PayloadInfogetPayloadInfo(InboxItem item, String initiatorHint)Build the PayloadInfo for the payload represented by the InboxItem.PayloadInfogetPayloadInfo(String payloadPath, String initiatorHint)Build the PayloadInfo for the payload located at the specified path.
-
-
-
Method Detail
-
getPayloadInfo
PayloadInfo getPayloadInfo(InboxItem item, String initiatorHint)
Build the PayloadInfo for the payload represented by the InboxItem.- Parameters:
item- theInboxItemrepresenting the payloadinitiatorHint- a hint as to who initiated this request for payload info. Null is a valid value.- Returns:
- the
PayloadInfo
-
getPayloadInfo
PayloadInfo getPayloadInfo(String payloadPath, String initiatorHint)
Build the PayloadInfo for the payload located at the specified path.- Parameters:
payloadPath- the path to the payloadinitiatorHint- a hint as to who initiated this request for payload info. Null is a valid value.- Returns:
- the
PayloadInfo
-
-