Ldc
2024-04-08 343224eb5ac29aa0b914e66f34b7a64ad2a46364
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;
}