src/java.management.rest/share/classes/com/oracle/jmx/remote/rest/json/JSONElement.java
author hb
Tue, 29 Aug 2017 13:34:15 +0530
branchjmx-rest-api
changeset 55985 0c5a02edfdef
child 55997 f881344569d9
permissions -rw-r--r--
REST Adapter Initial commit 1. Unit tested and working GET/POST interfaces 2. Unit tested and working JSON parser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55985
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     1
/*
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     2
 * To change this license header, choose License Headers in Project Properties.
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     3
 * To change this template file, choose Tools | Templates
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     4
 * and open the template in the editor.
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     5
 */
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     6
package com.oracle.jmx.remote.rest.json;
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     7
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     8
/**
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
     9
 * @author harsha
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
    10
 */
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
    11
public interface JSONElement {
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
    12
    public String toJsonString();
0c5a02edfdef REST Adapter Initial commit
hb
parents:
diff changeset
    13
}