Class SimpleEROSubobjectRegistry
java.lang.Object
org.opendaylight.protocol.pcep.spi.pojo.SimpleEROSubobjectRegistry
- All Implemented Interfaces:
EROSubobjectRegistry
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionparseSubobject
(int type, io.netty.buffer.ByteBuf buffer, boolean loose) Finds parser for given subobject type in the registry.org.opendaylight.yangtools.concepts.Registration
registerSubobjectParser
(int subobjectType, EROSubobjectParser parser) org.opendaylight.yangtools.concepts.Registration
registerSubobjectSerializer
(Class<? extends SubobjectType> subobjectClass, EROSubobjectSerializer serializer) void
serializeSubobject
(Subobject subobject, io.netty.buffer.ByteBuf buffer) Find serializer for given subobject.
-
Constructor Details
-
SimpleEROSubobjectRegistry
public SimpleEROSubobjectRegistry()
-
-
Method Details
-
registerSubobjectParser
public org.opendaylight.yangtools.concepts.Registration registerSubobjectParser(int subobjectType, EROSubobjectParser parser) -
registerSubobjectSerializer
public org.opendaylight.yangtools.concepts.Registration registerSubobjectSerializer(Class<? extends SubobjectType> subobjectClass, EROSubobjectSerializer serializer) -
parseSubobject
public Subobject parseSubobject(int type, io.netty.buffer.ByteBuf buffer, boolean loose) throws PCEPDeserializerException Description copied from interface:EROSubobjectRegistry
Finds parser for given subobject type in the registry. Delegates parsing to found parser.- Specified by:
parseSubobject
in interfaceEROSubobjectRegistry
- Parameters:
type
- subobject type, key in parser registrybuffer
- subobject wrapped in ByteBufloose
- ERO specific common field- Returns:
- null if the parser for this subobject could not be found
- Throws:
PCEPDeserializerException
- if the parsing did not succeed
-
serializeSubobject
Description copied from interface:EROSubobjectRegistry
Find serializer for given subobject. Delegates parsing to found serializer.- Specified by:
serializeSubobject
in interfaceEROSubobjectRegistry
- Parameters:
subobject
- to be parsedbuffer
- buffer where the serialized subobject will be parsed
-