1 package com.atlassian.sal.api.auth;
2
3 /**
4 * Used to store whether a request has successfully passed through the OAuth filter in some way.
5 * Specifically, this can be used to check if a 2LO request without a user associated with it (e.g. impersonation is
6 * disabled) came from a trusted system.
7 */
8 public interface OAuthRequestVerifier
9 {
10 boolean isVerified();
11 void setVerified(boolean val);
12 public void clear();
13 }