public interface MosaicBatchesDao
MosaicBatch
s. Modifier and Type | Method and Description |
---|---|
void |
deleteMosaicBatch(int mbid)
Delete the
MosaicBatch s for the Mosaic specified by this Mosaic ID. |
MosaicBatch |
getMosaicBatch(int mbid)
Get a MosaicBatch from the database based on this MosaicBatch ID.
|
java.util.List<MosaicBatch> |
getMosaicBatches()
Get the List of
MosaicBatch s. |
void |
storeMosaicBatch(MosaicBatch mbatch)
Store this
MosaicBatch in the database. |
java.util.List<MosaicBatch> getMosaicBatches()
MosaicBatch
s.MosaicBatch getMosaicBatch(int mbid)
mbid
- The MosaicBatch ID to query.void storeMosaicBatch(MosaicBatch mbatch)
MosaicBatch
in the database.mbatch
- The MosaicBatch to store.void deleteMosaicBatch(int mbid)
MosaicBatch
s for the Mosaic specified by this Mosaic ID.mbid
- The Mosaic BatchID to delete.