autohit.vm
Class VMIGet

java.lang.Object
  |
  +--autohit.vm.VMInstruction
        |
        +--autohit.vm.VMIGet

public class VMIGet
extends VMInstruction

A Virtual Machine instruction. This implements a GET query. It is up to transport registered with the VM to actually perform the GET. While this instruction is primarily designed to handle HTTP GET operations, a different transport could use it effectively.

See Also:
VMInstruction, Serialized Form

Field Summary
 java.lang.String qs
          The query string.
 
Fields inherited from class autohit.vm.VMInstruction
ADD, CRC, EXEC, FOR, GET, HEADER, IF, iv, IVToken, JUMP, NOP, nToken, NV, RSCOPE, SCOPE, SEEK, SET, VERIFY, WAIT, WHILE
 
Constructor Summary
VMIGet()
          Default constructor.
 
Method Summary
 java.lang.String toString()
          Dump this Instruction.
 
Methods inherited from class autohit.vm.VMInstruction
orIV
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

qs

public java.lang.String qs
The query string. For the HTTP Transport this will be a URL without the domain.
Constructor Detail

VMIGet

public VMIGet()
Default constructor.
Method Detail

toString

public java.lang.String toString()
Dump this Instruction. Mostly for debugging.
Returns:
a String containing the dump.
Overrides:
toString in class VMInstruction