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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.vci.server.omd.attribpool.delegate;
 
import com.vci.corba.common.VCIError;
import com.vci.corba.omd.atm.AttribItem;
 
public interface IAPServerDelegate {
 
    public boolean addAttribItem(AttribItem attribItem) throws VCIError;
    
    public AttribItem[] getAttribItems(String filter, int start,
            int rows) throws VCIError;
    
    /**
     * 检查要插入的记录是否存在
     */
    public boolean checkRowIsExists(String name) throws VCIError;
 
    /**
     * 修改属性
     */
    public boolean modifyAbItem(AttribItem attribItem) throws VCIError;
 
    /**
     * 批量删除属性: abItems
     */
    public boolean deleteAbItems(AttribItem[] abItems) throws VCIError;
    
    public boolean deleteAbItem(AttribItem att) throws VCIError;
 
    /**
     * 根据属性名获取属性
     */
    public AttribItem[] getAttribItemsByNames(String[] attNames) throws VCIError;
 
    /**
     * 根据属性名返回属性
     */
    public AttribItem getAttribItemByName(String abName) throws VCIError;
 
    /**
     * 根据属性名获取属性数据类型
     */
    public String getAttribItemDataType(String abName) throws VCIError;
 
    /**
     * 提供属性池的数据文件数据
     */
    public String getAPData() throws VCIError;
 
    
 
    /**
     * 获取使用指定枚举名的属性名列表
     */
    public String[] getAPNamesByEMName(String emName) throws VCIError;
 
    public boolean xml2DB(String userName) throws VCIError;
 
    /**
     * 获取不在参数列表中的属性项
     */
    public AttribItem[] getAttribItemsOutNames(String[] abNameArray,String text)
            throws VCIError;
    
}