Update MRI upstreams for Phosphorus
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / util / RequestInputUtils.java
index 37519bc0cf7c430407682fd3385e52c5105ea98b..9edf9422431dcbb8d2cfaf5b6878c5f6d00d9444 100644 (file)
@@ -5,22 +5,22 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.openflowplugin.impl.services.util;
 
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartRequestFlags;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartRequestInputBuilder;
+import org.opendaylight.yangtools.yang.common.Uint32;
+import org.opendaylight.yangtools.yang.common.Uint8;
 
 public final class RequestInputUtils {
-
     private RequestInputUtils() {
         throw new IllegalStateException("This class should not be instantiated.");
     }
 
-    public static MultipartRequestInputBuilder createMultipartHeader(MultipartType multipart,
-                                                                     Long xid,
-                                                                     Short version) {
+    public static MultipartRequestInputBuilder createMultipartHeader(final MultipartType multipart,
+                                                                     final Uint32 xid,
+                                                                     final Uint8 version) {
         MultipartRequestInputBuilder mprInput = new MultipartRequestInputBuilder();
         mprInput.setType(multipart);
         mprInput.setVersion(version);
@@ -28,5 +28,4 @@ public final class RequestInputUtils {
         mprInput.setFlags(new MultipartRequestFlags(false));
         return mprInput;
     }
-
 }