net.mossol.bot.storage.MenuStorageService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of line_bot_mossol-lib Show documentation
Show all versions of line_bot_mossol-lib Show documentation
Line Bot Mossol (line_bot_mossol-lib)
package net.mossol.bot.storage;
import java.util.List;
import java.util.Map;
import net.mossol.bot.model.LocationInfo;
import net.mossol.bot.model.MenuType;
public interface MenuStorageService {
Map getMenuList(MenuType type);
List getAllLocationInfoList();
boolean removeMenu(MenuType menuType, String food);
boolean removeLocationInfo(LocationInfo locationInfo);
boolean addMenu(MenuType menuType, String food);
String addLocationInfo(LocationInfo locationInfo);
boolean updateLocationInfo(String locationId, LocationInfo locationInfo);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy