44251f1d0f3f91d19596e978803c782fa3c47c7d
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / jsonrpc / JsonRpcEncoder.java
1 /*
2  * Copyright (c) 2013, 2015 EBay Software Foundation 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.ovsdb.lib.jsonrpc;
10
11 import io.netty.channel.ChannelHandlerContext;
12 import io.netty.handler.codec.MessageToMessageEncoder;
13
14 import java.util.List;
15
16 /**
17  * Created with IntelliJ IDEA.
18  * User: araveendrann
19  * Date: 10/6/13
20  * Time: 11:19 PM
21  * To change this template use File | Settings | File Templates.
22  */
23 public class JsonRpcEncoder extends MessageToMessageEncoder<Object> {
24     @Override
25     protected void encode(ChannelHandlerContext ctx, Object msg, List<Object> out) throws Exception {
26
27     }
28 }