All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mossol.bot.storage.MenuStorageService Maven / Gradle / Ivy

There is a newer version: 0.0.3.8
Show newest version
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