@Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) public @interface IgnoreJwt
Controllers or individual controller methods to denote that authentication by
JSON Web Token is not required. This should generally only be used for endpoints that will not be accessed by an
Atlassian host.
To accept requests without requiring JWT authentication, add this annotation to the class or method:
@Controller @IgnoreJwt public class PublicController { ... }
Copyright © 2019 Atlassian. All rights reserved.