package com.vci.corba.volume;
|
|
import org.omg.PortableServer.POA;
|
|
/**
|
* Generated from IDL interface "VolumeService".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public class VolumeServicePOATie
|
extends VolumeServicePOA
|
{
|
private VolumeServiceOperations _delegate;
|
|
private POA _poa;
|
public VolumeServicePOATie(VolumeServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public VolumeServicePOATie(VolumeServiceOperations delegate, POA poa)
|
{
|
_delegate = delegate;
|
_poa = poa;
|
}
|
public com.vci.corba.volume.VolumeService _this()
|
{
|
org.omg.CORBA.Object __o = _this_object() ;
|
com.vci.corba.volume.VolumeService __r = com.vci.corba.volume.VolumeServiceHelper.narrow(__o);
|
return __r;
|
}
|
public com.vci.corba.volume.VolumeService _this(org.omg.CORBA.ORB orb)
|
{
|
org.omg.CORBA.Object __o = _this_object(orb) ;
|
com.vci.corba.volume.VolumeService __r = com.vci.corba.volume.VolumeServiceHelper.narrow(__o);
|
return __r;
|
}
|
public VolumeServiceOperations _delegate()
|
{
|
return _delegate;
|
}
|
public void _delegate(VolumeServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public POA _default_POA()
|
{
|
if (_poa != null)
|
{
|
return _poa;
|
}
|
return super._default_POA();
|
}
|
public boolean ChangeFileName(java.lang.String resName, java.lang.String desName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.ChangeFileName(resName,desName);
|
}
|
|
public boolean deleteAllFiles(java.lang.String[] fileNames) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteAllFiles(fileNames);
|
}
|
|
public boolean existPath(java.lang.String filePath) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.existPath(filePath);
|
}
|
|
public com.vci.corba.volume.data.FileInfo[] getFolderFiles(java.lang.String path) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getFolderFiles(path);
|
}
|
|
public java.lang.String getHostInfo() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getHostInfo();
|
}
|
|
public long getCurrrentTimeMillions()
|
{
|
return _delegate.getCurrrentTimeMillions();
|
}
|
|
public java.lang.String[] getSubFolders(java.lang.String path) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getSubFolders(path);
|
}
|
|
public long getIntegrationFileSize(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getIntegrationFileSize(fileName);
|
}
|
|
public byte[] receiveIntegrationFile(java.lang.String fileName, long pointoffile) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.receiveIntegrationFile(fileName,pointoffile);
|
}
|
|
public java.lang.String getFileMD5(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getFileMD5(fileName);
|
}
|
|
public boolean deleteFile(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteFile(fileName);
|
}
|
|
public boolean copyFile(java.lang.String fromFileName, java.lang.String copyFileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.copyFile(fromFileName,copyFileName);
|
}
|
|
public byte[][] downloadFile(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.downloadFile(fileName);
|
}
|
|
public boolean isFileExist(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.isFileExist(fileName);
|
}
|
|
public long getFileModifiedTime(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getFileModifiedTime(fileName);
|
}
|
|
public boolean receiveFile(java.lang.String fileName, byte[] file, long pointoffile, long modifiedtime, long filesize) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.receiveFile(fileName,file,pointoffile,modifiedtime,filesize);
|
}
|
|
public boolean verifyFileUploadSuccess(java.lang.String destFileFullPath, long clientFileSize, java.lang.String clientFileMD5, java.lang.String[] otherParams) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.verifyFileUploadSuccess(destFileFullPath,clientFileSize,clientFileMD5,otherParams);
|
}
|
|
public byte[] sendFile(java.lang.String fileName, long pointoffile) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.sendFile(fileName,pointoffile);
|
}
|
|
public com.vci.corba.volume.data.VolumeUseInfo[] getVolumeUseInfo() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getVolumeUseInfo();
|
}
|
|
public boolean deleteAllBakFiles(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteAllBakFiles(fileName);
|
}
|
|
public com.vci.corba.volume.data.FileInfo[] getFileList(java.lang.String path, java.lang.String savePath) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getFileList(path,savePath);
|
}
|
|
public boolean testConntect()
|
{
|
return _delegate.testConntect();
|
}
|
|
public boolean createDirectory(java.lang.String historyDirectory, java.lang.String directoryName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.createDirectory(historyDirectory,directoryName);
|
}
|
|
public long getFileSize(java.lang.String fileName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getFileSize(fileName);
|
}
|
|
}
|