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;
|
}
|