package com.uas.eis.service; import javax.servlet.http.HttpServletRequest; import java.io.IOException; import java.util.Map; public interface SERESService { Map getStock( String param) throws IOException; Map getERPStock(String param) ; String getToken() throws IOException; Map saveAlert(String data) ; Map test(String token) throws Exception; void testToken(String token) throws IOException; Map testGetStock(String token) throws Exception; Map testGetStockData(String token) throws Exception; }