Interface WarpsRepository
- All Known Implementing Classes:
MySQLWarpsRepository,SQLiteWarpsRepository,SQLWarpsRepository
public interface WarpsRepository
Repository interface for managing warps in the storage system.
-
Method Summary
-
Method Details
-
load
Gets a warp by its name.- Parameters:
warpName- The name of the warp.- Returns:
- The warp object, or null if not found.
-
save
Saves a warp to the storage system.- Parameters:
warpData- The warp to save.
-
delete
Deletes a warp from the storage system.- Parameters:
warpName- The name of the warp to delete.
-
getAllWarpNames
Gets a list of all warp names.- Returns:
- A list of all warp names.
-