Class Connection.DelegatingSMBMessageConverter
java.lang.Object
com.hierynomus.smbj.connection.Connection.DelegatingSMBMessageConverter
- All Implemented Interfaces:
PacketFactory<SMBPacketData<?>>
- Enclosing class:
Connection
private static class Connection.DelegatingSMBMessageConverter
extends Object
implements PacketFactory<SMBPacketData<?>>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanHandle(byte[] data) Checks whether this PacketFactory is able to handle the incoming raw byte data.read(byte[] data) Constructpacket dataout of the raw byte data.
-
Field Details
-
packetFactories
-
-
Constructor Details
-
DelegatingSMBMessageConverter
-
-
Method Details
-
read
Description copied from interface:PacketFactoryConstructpacket dataout of the raw byte data.- Specified by:
readin interfacePacketFactory<SMBPacketData<?>>- Parameters:
data- the byte array containing the full packet data- Returns:
- A newly constructed
PacketDataobject. - Throws:
Buffer.BufferExceptionIOException
-
canHandle
public boolean canHandle(byte[] data) Description copied from interface:PacketFactoryChecks whether this PacketFactory is able to handle the incoming raw byte data.- Specified by:
canHandlein interfacePacketFactory<SMBPacketData<?>>- Parameters:
data- the byte array containing the full packet data- Returns:
- true if the
PacketFactory.read(byte[])will result in a packet, false otherwise.
-