public enum AuthenticatedUserImpersonator extends Enum<AuthenticatedUserImpersonator>
The authenticated user is stored on a thread local variable
for the
HTTP workers
. This variable is, amongst other things, used to
determine the locale
for i18n
.
This behaviour makes sense for most cases. But if you want to e.g. render a Soy template for an email (on an HTTP
worker) ahead of being sent, you'd want to set the locale to the recipient's locale. If the recipient is unknown to
Confluence, you'd want the lookup to default to the site's locale
instead
of the sender's locale.
AuthenticatedUserThreadLocal
,
UserThreadLocalFilter
,
ConfluenceI18nResolver
,
com.atlassian.soy.impl.GetTextFunction
,
DefaultLocaleManager
Enum Constant and Description |
---|
REQUEST_AGNOSTIC
Use this instance if you'd want the thread to be agnostic of the
request cache
during the execution of the given callback. |
REQUEST_AWARE
Use this instance if you'd want the thread to be aware of the
request cache
during the execution of the given callback. |
Modifier and Type | Method and Description |
---|---|
<T> T |
asAnonymousUser(Callable<T> callback) |
<T> T |
asUser(Callable<T> callback,
com.atlassian.user.User user)
Impersonates the given user during the execution of the given callback.
|
static AuthenticatedUserImpersonator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticatedUserImpersonator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticatedUserImpersonator REQUEST_AWARE
request cache
during the execution of the given callback.
This would mean that the locale lookup
would fall back to
the Browser's locale
.
RequestCacheThreadLocal
,
RequestCacheThreadLocalFilter
public static final AuthenticatedUserImpersonator REQUEST_AGNOSTIC
request cache
during the execution of the given callback.
This would mean that the locale lookup
would fall back to the
the site's locale
.
RequestCacheThreadLocal
,
RequestCacheThreadLocalFilter
public static AuthenticatedUserImpersonator[] values()
for (AuthenticatedUserImpersonator c : AuthenticatedUserImpersonator.values()) System.out.println(c);
public static AuthenticatedUserImpersonator valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic <T> T asAnonymousUser(Callable<T> callback)
asUser(Callable, User)
Copyright © 2003–2016 Atlassian. All rights reserved.