es.tid.rsvp.objects.SenderTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-protocols Show documentation
Show all versions of network-protocols Show documentation
BGP-LS,OSPF-TE,PCEP and RSVP-TE protocol encodings.
The newest version!
package es.tid.rsvp.objects;
public abstract class SenderTemplate extends RSVPObject{
public SenderTemplate(){
super();
classNum = 11;
}
public SenderTemplate(byte[] bytes, int offset){
super(bytes,offset);
}
public abstract void encode();
public abstract void decode();
}