FileDocCategorySizeDatePackage
SmbComClose.javaAPI DocJCIFS 1.3.17 API1881Tue Oct 18 15:26:24 BST 2011jcifs.smb

SmbComClose

public class SmbComClose extends ServerMessageBlock

Fields Summary
private int
fid
private long
lastWriteTime
Constructors Summary
SmbComClose(int fid, long lastWriteTime)

        this.fid = fid;
        this.lastWriteTime = lastWriteTime;
        command = SMB_COM_CLOSE;
    
Methods Summary
intreadBytesWireFormat(byte[] buffer, int bufferIndex)

        return 0;
    
intreadParameterWordsWireFormat(byte[] buffer, int bufferIndex)

        return 0;
    
public java.lang.StringtoString()

        return new String( "SmbComClose[" +
            super.toString() +
            ",fid=" + fid +
            ",lastWriteTime=" + lastWriteTime + "]" );
    
intwriteBytesWireFormat(byte[] dst, int dstIndex)

        return 0;
    
intwriteParameterWordsWireFormat(byte[] dst, int dstIndex)

        writeInt2( fid, dst, dstIndex );
        dstIndex += 2;
        writeUTime( lastWriteTime, dst, dstIndex );
        return 6;