1   package com.atlassian.plugins.rest.json;
2   
3   import com.atlassian.plugins.rest.common.security.AnonymousAllowed;
4   
5   import javax.ws.rs.GET;
6   import javax.ws.rs.Path;
7   
8   @Path("json")
9   @AnonymousAllowed
10  public class JsonObjectResource
11  {
12      @GET
13      public JsonObject get()
14      {
15          return new JsonObject();
16      }
17  }