 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 AliveNotice extends Message {

    public AliveNotice() {
    }
    
    public AliveNotice(DataInputStream dis) throws IOException {
    	this.decerealize(dis);
    }
    
    public int getMessageType(){
	return ALIVE_NOTICE;
    }
    
    public void cerealize(DataOutputStream s) throws IOException {
    	super.cerealize(s);
    }


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


}
