Interface StorageHandler
-
public interface StorageHandler
A Handler for getting aStorage
for Tickets- Since:
- 10.0.38
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Storage
getTicketStorage(java.lang.Long id)
Returns aStorage
for aTicket
with the given id.java.util.Map<java.lang.Long,Storage>
getTicketStorages(java.util.Set<java.lang.Long> ticketIds)
Returns aMap
ofTicket
id ->Storage
of theTicket
-
-
-
Method Detail
-
getTicketStorage
Storage getTicketStorage(java.lang.Long id)
Returns aStorage
for aTicket
with the given id.- Parameters:
id
- the id of theTicket
- Returns:
- the
Storage
for theTicket
- Since:
- 10.0.38
-
getTicketStorages
java.util.Map<java.lang.Long,Storage> getTicketStorages(java.util.Set<java.lang.Long> ticketIds)
Returns aMap
ofTicket
id ->Storage
of theTicket
- Parameters:
ticketIds
- the set with theTicket
ids for the desired storages- Returns:
- a
Map
ofTicket
id ->Storage
for the given ids - Since:
- 10.0.120
-
-