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
package com.vci.server.omd.enumtype.delegate;
 
import com.vci.corba.common.VCIError;
import com.vci.corba.omd.etm.EnumItem;
 
public interface IEnumServerDelegate {
    /**
     * 增加枚举
     */
    public boolean addEmItem(EnumItem emItem) throws VCIError;
    
    public boolean deleteEmItem(EnumItem em)throws VCIError;
    
    /**
     * 删除枚举
     */
    public boolean deleteEmItems(EnumItem[] emItems) throws VCIError;
    
    
    /**
     * 修改枚举
     */
    public boolean modifyEmItem(EnumItem emItem) throws VCIError;
    
    public boolean xml2DB(String userName) throws VCIError;
 
    public EnumItem[] getEmItems(String filter, int start, int rows) throws VCIError;
 
    public boolean checkRowIsExists(String name) throws VCIError ;
 
    public EnumItem getEmItemByName(String name) throws VCIError ;
 
    public EnumItem[] getEmItemsByType(String type) throws VCIError ;
 
//    public boolean isIPSecretValid() throws VCIError ;
}