client/src/main/java/org/apache/qpid/framing/BasicCancelOkBody.java [44:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            AMQShortString consumerTag
                            )
    {
        _consumerTag = consumerTag;
    }

    public int getClazz()
    {
        return CLASS_ID;
    }

    public int getMethod()
    {
        return METHOD_ID;
    }

    public final AMQShortString getConsumerTag()
    {
        return _consumerTag;
    }

    protected int getBodySize()
    {
        int size = 0;
        size += getSizeOf( _consumerTag );
        return size;
    }

    public void writeMethodPayload(ByteBuffer buffer)
    {
        writeAMQShortString( buffer, _consumerTag );
    }

    public boolean execute(MethodDispatcher dispatcher, int channelId) throws QpidException
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



client/src/main/java/org/apache/qpid/framing/BasicConsumeOkBody.java [44:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            AMQShortString consumerTag
                             )
    {
        _consumerTag = consumerTag;
    }

    public int getClazz()
    {
        return CLASS_ID;
    }

    public int getMethod()
    {
        return METHOD_ID;
    }

    public final AMQShortString getConsumerTag()
    {
        return _consumerTag;
    }

    protected int getBodySize()
    {
        int size = 0;
        size += getSizeOf( _consumerTag );
        return size;
    }

    public void writeMethodPayload(ByteBuffer buffer)
    {
        writeAMQShortString( buffer, _consumerTag );
    }

    public boolean execute(MethodDispatcher dispatcher, int channelId) throws QpidException
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



