Fix yangtools reference
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / util / RequestInputUtils.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowplugin.impl.services.util;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartRequestFlags;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartRequestInputBuilder;
13 import org.opendaylight.yangtools.yang.common.Uint32;
14 import org.opendaylight.yangtools.yang.common.Uint8;
15
16 public final class RequestInputUtils {
17     private RequestInputUtils() {
18         // Hidden on purpose
19     }
20
21     public static MultipartRequestInputBuilder createMultipartHeader(final MultipartType multipart,
22                                                                      final Uint32 xid,
23                                                                      final Uint8 version) {
24         MultipartRequestInputBuilder mprInput = new MultipartRequestInputBuilder();
25         mprInput.setType(multipart);
26         mprInput.setVersion(version);
27         mprInput.setXid(xid);
28         mprInput.setFlags(new MultipartRequestFlags(false));
29         return mprInput;
30     }
31 }