FileDocCategorySizeDatePackage
NtTransQuerySecurityDescResponse.javaAPI DocJCIFS 1.3.17 API2249Tue Oct 18 15:26:24 BST 2011jcifs.smb

NtTransQuerySecurityDescResponse

public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse

Fields Summary
SecurityDescriptor
securityDescriptor
Constructors Summary
NtTransQuerySecurityDescResponse()

        super();
    
Methods Summary
intreadDataWireFormat(byte[] buffer, int bufferIndex, int len)

        int start = bufferIndex;

        if (errorCode != 0)
            return 4;

        try {
            securityDescriptor = new SecurityDescriptor();
            bufferIndex += securityDescriptor.decode(buffer, bufferIndex, len);
        } catch (IOException ioe) {
            throw new RuntimeException(ioe.getMessage());
        }

        return bufferIndex - start;
    
intreadParametersWireFormat(byte[] buffer, int bufferIndex, int len)

        length = readInt4( buffer, bufferIndex );
        return 4;
    
intreadSetupWireFormat(byte[] buffer, int bufferIndex, int len)

        return 0;
    
public java.lang.StringtoString()

        return new String( "NtTransQuerySecurityResponse[" +
            super.toString() + "]" );
    
intwriteDataWireFormat(byte[] dst, int dstIndex)

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

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

        return 0;