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