es.tid.rsvp.objects.RSVPHop 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;
import es.tid.rsvp.RSVPProtocolViolationException;
public abstract class RSVPHop extends RSVPObject{
public RSVPHop () {
super();
}
public RSVPHop (byte[] bytes, int offset) throws RSVPProtocolViolationException{
super(bytes, offset);
}
public abstract void encode();
public abstract void decode() throws RSVPProtocolViolationException;
}