Feature uses features-parent as parent
[groupbasedpolicy.git] / renderers / opflex / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / jsonrpc / JsonRpcEncoder.java
1 /*
2  * Copyright (C) 2013 EBay Software Foundation
3  * Copyright (C) 2014 Cisco Systems, Inc.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Authors : Ashwin Raveendran, Madhu Venugopal, Thomas Bachman
10  */
11 package org.opendaylight.groupbasedpolicy.renderer.opflex.jsonrpc;
12
13 import io.netty.channel.ChannelHandlerContext;
14 import io.netty.handler.codec.MessageToMessageEncoder;
15
16 import java.util.List;
17
18 public class JsonRpcEncoder extends MessageToMessageEncoder<Object> {
19     @Override
20     protected void encode(ChannelHandlerContext ctx, Object msg, List<Object> out) throws Exception {
21
22     }
23 }