es.tid.pce.pcep.objects.Bandwidth 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.pce.pcep.objects;
/**
* Base abstract class for representing Bandwidth Object.
* @author Oscar Gonzalez de Dios ([email protected])
*
*/
public abstract class Bandwidth extends PCEPObject{
public Bandwidth(){
super();
this.setObjectClass(ObjectParameters.PCEP_OBJECT_CLASS_BANDWIDTH);
}
public Bandwidth(byte[] bytes, int offset) throws MalformedPCEPObjectException{
super(bytes, offset);
}
public abstract Bandwidth duplicate();
}