yuxc
2024-03-12 aca35d5ae9940a77ffe3daea2eeeb48a1cd124f3
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;
}