Add single layer deserialization support
[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
9 package org.opendaylight.openflowplugin.impl.services.util;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartRequestFlags;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartRequestInputBuilder;
14
15 /**
16  * Created by Martin Bobak <mbobak@cisco.com> on 26.3.2015.
17  */
18 public final class RequestInputUtils {
19
20     private RequestInputUtils() {
21         throw new IllegalStateException("This class should not be instantiated.");
22     }
23
24     public static MultipartRequestInputBuilder createMultipartHeader(MultipartType multipart,
25                                                                Long xid, Short version) {
26         MultipartRequestInputBuilder mprInput = new MultipartRequestInputBuilder();
27         mprInput.setType(multipart);
28         mprInput.setVersion(version);
29         mprInput.setXid(xid);
30         mprInput.setFlags(new MultipartRequestFlags(false));
31         return mprInput;
32     }
33
34 }