* @throws IOException thrown if an error occurs
*/
public void writePacket(Packet packet, DataOutput dataOut) throws IOException {
super.writePacket(packet, dataOut);
BrokerAdminCommand info = (BrokerAdminCommand) packet;
super.writeUTF(info.getCommand(), dataOut);
ActiveMQDestination.writeToStream(info.getDestination(), dataOut);
}