1 package com.atlassian.plugins.rest.scope.explicit; 2 3 import com.atlassian.plugins.rest.common.security.AnonymousAllowed; 4 5 import javax.ws.rs.GET; 6 import javax.ws.rs.Path; 7 import javax.ws.rs.Produces; 8 9 @Path("/get") 10 @AnonymousAllowed 11 public class ExplicitScopeResource { 12 @GET 13 @Produces("text/plain") 14 public String get() { 15 return "exp"; 16 } 17 }