ludc
2024-05-17 58e1c4e2bdc8e4f8b647d7c2b9e5e5656a00b445
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.vci.ubcs.example.service;
 
import java.net.MalformedURLException;
import java.rmi.RemoteException;
 
/**
 * 统一申请接口:UBCS编码资源管理系统,被其他集成的系统的通用接口调用示例
 * @author ludc
 * @date 2024/2/27 20:34
 */
public interface ICalledIntegrationService {
 
    /**
     * 编码系统,统一申请接口,用http,rest方式调用
     */
    void sendApplyCodeByRest();
 
    /**
     * 编码系统,统一申请接口,用WebService方式调用
     */
    void sendApplyCodeByWebService() throws MalformedURLException, RemoteException;
 
 
    /**
     * 编码系统,统一申请接口,用WebService方式调用xml
     */
    void sendApplyCodeByWebServicexml(int frequency) throws MalformedURLException, RemoteException;
 
}