package com.vci.client.bof;
|
|
import com.vci.corba.common.VCIError;
|
|
public interface ClientLOOperationInterface {
|
|
public boolean createLinkObject() throws VCIError;
|
|
public boolean updateLinkObject() throws VCIError;
|
|
public boolean delteLinkObject() throws VCIError;
|
|
public void readLinkObjectById(String linkId) throws VCIError;
|
}
|