BUG-47 : switched subobjects to generated source code.
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / PCEPProviderContext.java
index a15204760f9cd240a18df3a40a46741e60a0f5e8..45b8f44d9cff71ecf36b3bbc1600fb94e877a674 100644 (file)
@@ -7,15 +7,19 @@
  */
 package org.opendaylight.protocol.pcep.spi;
 
-/**
- *
- */
 public interface PCEPProviderContext {
-       public LabelHandlerRegistry getHandlerRegistry();
+
+       public LabelHandlerRegistry getLabelHandlerRegistry();
+       
        public MessageHandlerRegistry getMessageHandlerRegistry();
+
        public ObjectHandlerRegistry getObjectHandlerRegistry();
-       public SubobjectHandlerRegistry getEROSubobjectHandlerRegistry();
-       public SubobjectHandlerRegistry getRROSubobjectHandlerRegistry();
-       public SubobjectHandlerRegistry getXROSubobjectHandlerRegistry();
+
+       public EROSubobjectHandlerRegistry getEROSubobjectHandlerRegistry();
+
+       public RROSubobjectHandlerRegistry getRROSubobjectHandlerRegistry();
+
+       public XROSubobjectHandlerRegistry getXROSubobjectHandlerRegistry();
+
        public TlvHandlerRegistry getTlvHandlerRegistry();
 }