SERESService.java 624 B

1234567891011121314151617
  1. package com.uas.eis.service;
  2. import javax.servlet.http.HttpServletRequest;
  3. import java.io.IOException;
  4. import java.util.Map;
  5. public interface SERESService {
  6. Map<String,Object> getStock( String param) throws IOException;
  7. Map<String,Object> getERPStock(String param) ;
  8. String getToken() throws IOException;
  9. Map<String,Object> saveAlert(String data) ;
  10. Map<String,Object> test(String token) throws Exception;
  11. void testToken(String token) throws IOException;
  12. Map<String,Object> testGetStock(String token) throws Exception;
  13. Map<String,Object> testGetStockData(String token) throws Exception;
  14. }