net.kano.joscar.snaccmd.conn
Class SetExtraInfoCmd
java.lang.Object
SnacCommand
ConnCommand
SetExtraInfoCmd
- public class SetExtraInfoCmd
- extends ConnCommand
A SNAC command used to set the user's list of "extra info blocks."
- Source of this SNAC:
- AIM client
- SNAC command type:
- Family
0x01
, command 0x1e
Fields inherited from class ConnCommand |
CMD_CLIENT_READY, CMD_CLIENT_VERS, CMD_ENCINFOACK, CMD_EXTRA_ACK, CMD_MIGRATE_PLS, CMD_MY_INFO_REQ, CMD_NOOP, CMD_PAUSE, CMD_PAUSE_ACK, CMD_RATE_ACK, CMD_RATE_CHG, CMD_RATE_INFO, CMD_RATE_REQ, CMD_RESUME, CMD_SERV_VERS, CMD_SERVER_READY, CMD_SERVICE_REDIR, CMD_SERVICE_REQ, CMD_SET_IDLE, CMD_SETENCINFO, CMD_SETEXTRAINFO, CMD_UPDATE, CMD_WARNED, CMD_YOUR_INFO, FAMILY_CONN, FAMILY_INFO |
Constructor Summary |
|
SetExtraInfoCmd(ExtraInfoBlock[] blocks)
Creates a new set-extra-info-blocks command containing the given extra
information blocks. |
protected |
SetExtraInfoCmd(SnacPacket packet)
Generates a new set-extra-info-blocks command from the given incoming
SNAC packet. |
Method Summary |
ExtraInfoBlock[] |
getInfoBlocks()
Returns a list of the extra info blocks sent in this command. |
java.lang.String |
toString()
|
void |
writeData(java.io.OutputStream out)
Writes this command's SNAC data block to the given stream. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
SetExtraInfoCmd
protected SetExtraInfoCmd(SnacPacket packet)
- Generates a new set-extra-info-blocks command from the given incoming
SNAC packet.
- Parameters:
packet
- a set-extra-info-blocks SNAC command
SetExtraInfoCmd
public SetExtraInfoCmd(ExtraInfoBlock[] blocks)
- Creates a new set-extra-info-blocks command containing the given extra
information blocks.
- Parameters:
blocks
- a list of extra information blocks
getInfoBlocks
public final ExtraInfoBlock[] getInfoBlocks()
- Returns a list of the extra info blocks sent in this command.
- Returns:
- a list of the extra info blocks stored in this command
writeData
public void writeData(java.io.OutputStream out)
throws java.io.IOException
- Description copied from class:
SnacCommand
- Writes this command's SNAC data block to the given stream. The SNAC data
block is the data after the first ten bytes of a SNAC packet.
- Specified by:
writeData
in class SnacCommand
- Parameters:
out
- the stream to which to write the SNAC data
- Throws:
java.io.IOException
- if an I/O error occurs
toString
public java.lang.String toString()