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