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