 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 GetAbsoluteTimeCmd extends Command {

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

    public GetAbsoluteTimeCmd() {
	this.seqNo = getNextCmdSeqNo();
	this.len = 0; // for the absoluteTime
    }
	
    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=GetAbsoluteTimeCmd%seqNo="
	       + this.seqNo
	       + "%len="
	       + this.len
	       + "%>%";
    }

}
