Port of JSONRPC lib and Server from OVSDB project. Changes include:
[groupbasedpolicy.git] / groupbasedpolicy / src / main / java / org / opendaylight / groupbasedpolicy / renderer / lib / jsonrpc / JsonRpcMessage.java
1 /*
2  * Copyright (C) 2014 Cisco Systems, Inc.
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 : Thomas Bachman
9  */
10 package org.opendaylight.groupbasedpolicy.renderer.lib.jsonrpc;
11
12 public abstract class JsonRpcMessage {
13
14         public abstract String getName();
15         public abstract void setName(String name);
16         public abstract void invoke();
17 }