 1Content-type: application/x-Unknown; charset=UTF8package nmc.common;

import java.io.DataOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.IOException;

public class TestGetTime extends TestCommand {

    public TestGetTime(DataInputStream dis) throws IOException {
	this.decerealize(dis);
    }

    public TestGetTime() {
	this.seqNo = getNextCmdSeqNo();
	this.len = 4; // for the timeout
    }
	
    public int getMessageType(){
	return GET_ABSOLUTE_TIME_CMD;
    }

    public void cerealize(DataOutputStream s) throws IOException {
    	super.cerealize(s);
    }

    public void decerealize(DataInputStream s) throws IOException {
    	super.decerealize(s);
    }

    public String toString(){
	return "%<%msgType=TestGetTime%seqNo="
	       + this.seqNo
	       + "%len="
	       + this.len
	       + "%timeout="
	       + this.timeout
	       + "%>%";
    }


}