View Javadoc

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      @GET
12      public JsonObject get() {
13          return new JsonObject();
14      }
15  }