Squash more sonar warnings
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / XROSubobjectHandlerRegistry.java
index 2e4637077476c95bf7c7ae6707dbab702a6818cd..b8f08c067a4910a9ff6bb18250c45768dae77b83 100644 (file)
@@ -7,9 +7,9 @@
  */
 package org.opendaylight.protocol.pcep.spi;
 
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.exclude.route.object.Subobjects;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.SubobjectType;
 
 public interface XROSubobjectHandlerRegistry {
-       public XROSubobjectParser getSubobjectParser(int subobjectType);
-       public XROSubobjectSerializer getSubobjectSerializer(Subobjects subobject);
+       XROSubobjectParser getSubobjectParser(int subobjectType);
+       XROSubobjectSerializer getSubobjectSerializer(SubobjectType subobject);
 }