SYUtilsFacadeController.java 1.7 KB

123456789101112131415161718192021222324252627
  1. package com.kingdee.eas.custom.shuiyou.uitls;
  2. import com.kingdee.bos.BOSException;
  3. import com.kingdee.bos.Context;
  4. import java.util.Map;
  5. import com.kingdee.eas.custom.shuiyou.interfacelog.LogInfoInfo;
  6. import java.lang.String;
  7. import com.kingdee.eas.custom.shuiyou.task.TaskCatalogEnum;
  8. import cn.hutool.core.lang.Snowflake;
  9. import java.rmi.RemoteException;
  10. import com.kingdee.bos.framework.ejb.BizController;
  11. public interface SYUtilsFacadeController extends BizController
  12. {
  13. public String getSignature(Context ctx, String param) throws BOSException, RemoteException;
  14. public void initConfig(Context ctx, String filePath) throws BOSException, RemoteException;
  15. public LogInfoInfo log(Context ctx, LogInfoInfo logInfo) throws BOSException, RemoteException;
  16. public Map getConfig(Context ctx) throws BOSException, RemoteException;
  17. public String backTask(Context ctx, String url, String requestId, String osfServiceName, String backParam, TaskCatalogEnum catalog) throws BOSException, RemoteException;
  18. public String post(Context ctx, String url, String param) throws BOSException, RemoteException;
  19. public String get(Context ctx, String url, String param) throws BOSException, RemoteException;
  20. public String getSignature(Context ctx, Map propt, Map paramMap) throws BOSException, RemoteException;
  21. public String addTask(Context ctx, String osfServiceName, String param, TaskCatalogEnum catalog, String taskPreId) throws BOSException, RemoteException;
  22. public boolean delTask(Context ctx, String taskId) throws BOSException, RemoteException;
  23. public Snowflake getSnowflake(Context ctx) throws BOSException, RemoteException;
  24. public String getBizNo(Context ctx) throws BOSException, RemoteException;
  25. }