wangting
2025-01-16 18c43123b51a1688ab4ae01fe3d171c7d92e619b
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;
}