blueprint: final parameters
[controller.git] / opendaylight / blueprint / src / main / java / org / opendaylight / controller / blueprint / ext / RoutedRpcRegistrationConverter.java
index 5ae9a1cf72179563a532b3aea3f1e78ebf0cb677..66174438b23a89fc670aa464f1fc67eb5e7fd734 100644 (file)
@@ -22,13 +22,13 @@ import org.osgi.service.blueprint.container.ReifiedType;
  */
 public class RoutedRpcRegistrationConverter implements Converter {
     @Override
-    public boolean canConvert(Object sourceObject, ReifiedType targetType) {
+    public boolean canConvert(final Object sourceObject, final ReifiedType targetType) {
         return sourceObject instanceof RoutedRpcRegistration
                 && RoutedRpcRegistration.class.isAssignableFrom(targetType.getRawClass());
     }
 
     @Override
-    public Object convert(Object sourceObject, ReifiedType targetType) {
+    public Object convert(final Object sourceObject, final ReifiedType targetType) {
         return sourceObject;
     }
 }