dangsn
2024-12-03 61f60eed76763e55196263b06a8443328d77cb69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.vci.server.omd.versionrule.delegate;
 
import com.vci.corba.common.VCIError;
import com.vci.corba.omd.vrm.VersionRule;
 
public interface IVRServerDelegate {
    
    public boolean addVersionRule(VersionRule vr) throws VCIError;
    
    public boolean modifyVersionRule(VersionRule vr) throws VCIError;
 
    public boolean deleteVersionRule(VersionRule vr) throws VCIError;
 
    /**
     * 删除VersionRules
     */
    public boolean deleteVersionRules(VersionRule[] vrs) throws VCIError;
    
    public VersionRule[] getVersionRules() throws VCIError;
 
    public VersionRule getVersionRule(String name) throws VCIError;
 
    public boolean xml2DB(String userName) throws VCIError;
}