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

net.mossol.bot.service.MenuServiceHandler Maven / Gradle / Ivy

There is a newer version: 0.0.3.8
Show newest version
package net.mossol.bot.service;

import net.mossol.bot.model.LocationInfo;

import java.util.List;

/**
 * Created by Amos.Doan.Mac on 2017. 12. 6..
 */
public interface MenuServiceHandler {

    enum FoodType {
        KOREA_FOOD,
        JAPAN_FOOD,
        DRINK_FOOD
    }

    String getMenu(FoodType type);
    LocationInfo selectMenu(FoodType type);
    String addMenu(List food, FoodType type);
    String removeMenu(List food, FoodType type);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy