Package fr.fuzeblocks.homeplugin.home
Interface HomeRequestStore
- All Known Implementing Classes:
- LocalHomeStore,- RedisHomeStore
public interface HomeRequestStore
The interface Home request store.
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdd home.voidClear all homes.voidclearHomes(UUID playerId) Clear homes.Gets homes.voidremoveHome(UUID playerId, String homeName) Remove home.
- 
Method Details- 
addHomeAdd home.- Parameters:
- playerId- the player id
- homeName- the home name
- location- the location
 
- 
removeHomeRemove home.- Parameters:
- playerId- the player id
- homeName- the home name
 
- 
getHomesGets homes.- Parameters:
- playerId- the player id
- Returns:
- the homes
 
- 
clearHomesClear homes.- Parameters:
- playerId- the player id
 
- 
clearAllHomesvoid clearAllHomes()Clear all homes.
 
-