Squash more sonar warnings
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / EROSubobjectHandlerRegistry.java
index 83d7e24eb008e8ed12144a0ceac2ac4cf0fcb3b9..f70c72aa37d09ecff7323509f5128612c8fe8c4f 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.explicit.route.object.Subobjects;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.SubobjectType;
 
 public interface EROSubobjectHandlerRegistry {
-       public EROSubobjectParser getSubobjectParser(int subobjectType);
-       public EROSubobjectSerializer getSubobjectSerializer(Subobjects subobject);
+       EROSubobjectParser getSubobjectParser(int subobjectType);
+       EROSubobjectSerializer getSubobjectSerializer(SubobjectType subobject);
 }