ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
30
31
32
33
34
35
package com.vci.common;
 
public class ServiceNames {
 
    // 缓存服务
    public static String CACHESERVICE = "CacheService";
    public static String CACHESERVICEREP = "CacheServiceRep";
    // #系统框架服务
    public static String FRAMESERVICE = "FrameService";
    public static String FRAMESERVICEREP = "FrameServiceRep";
    // #系统框架服务
    public static String LOGSERVICE = "LogService";
    public static String LOGSERVICEREP = "LogServiceRep";
    // 对象模型管理
    public static String OMDSERVICE = "OMDService";
    public static String OMDSERVICEREP = "OMDServiceRep";
    // 对象工厂服务
    public static String BOFSERVICE = "BOFService";
    public static String BOFSERVICEREP = "BOFServiceRep";
    // 查询模板管理服务
    public static String OQSERVICE = "OQService";
    public static String OQSERVICEREP = "OQServiceRep";
    // 参照查询服务
    public static String RQSERVICE = "RQService";
    public static String RQSERVICEREP = "RQServiceRep";
    // 工作流服务
    public static String WFSERVICE = "WFService";
    public static String WFSERVICEREP = "WFServiceRep";
    // UI管理服务
    public static String UISERVICE = "UIService";
    public static String UISERVICEREP = "UIServiceRep";
    // 默认卷服务名
    public static String VOLUMESERVICE = "VolumeService";
    public static String VOLUMESERVICEREP = "VolumeServiceRep";
}