|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@PublicApi public interface AvatarService
Service for manipulating Avatar's.
| Method Summary | |
|---|---|
boolean |
canSetCustomUserAvatar(ApplicationUser remoteUser,
ApplicationUser user)
Returns a boolean indicating whether the calling user can edit the custom user avatar for the user with the given username. |
boolean |
canSetCustomUserAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
Deprecated. Use canSetCustomUserAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0 |
Avatar |
getAvatar(ApplicationUser remoteUser,
ApplicationUser avatarUser)
Returns the Avatar for the given user, if configured. |
Avatar |
getAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
Deprecated. Use getAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0 |
URI |
getAvatarAbsoluteURL(ApplicationUser remoteUser,
ApplicationUser avatarUser,
Avatar.Size size)
This is the same as getAvatarURL(com.atlassian.crowd.embedded.api.User, String, com.atlassian.jira.avatar.Avatar.Size)
but returns an absolute URL. |
URI |
getAvatarAbsoluteURL(com.atlassian.crowd.embedded.api.User remoteUser,
String username,
Avatar.Size size)
Deprecated. Use getAvatarAbsoluteURL(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.avatar.Avatar.Size). Since v6.0 |
Avatar |
getAvatarTagged(ApplicationUser remoteUser,
ApplicationUser avatarUser)
|
URI |
getAvatarURL(ApplicationUser remoteUser,
ApplicationUser avatarUser)
Returns the URL for the avatar of the user having the given username for displaying on a page that should be shown for the passed in remoteUser. |
URI |
getAvatarURL(ApplicationUser remoteUser,
ApplicationUser avatarUser,
Avatar.Size size)
Returns the URL for the avatar of the user having the given username for displaying on a page that should be shown for the passed in remoteUser. |
URI |
getAvatarURL(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
Deprecated. Use getAvatarURL(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0 |
URI |
getAvatarURL(com.atlassian.crowd.embedded.api.User remoteUser,
String username,
Avatar.Size size)
Deprecated. Use getAvatarURL(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.avatar.Avatar.Size). Since v6.0 |
URI |
getAvatarUrlNoPermCheck(ApplicationUser avatarUser,
Avatar.Size size)
This is the same as getAvatarURL(com.atlassian.crowd.embedded.api.User, String,
com.atlassian.jira.avatar.Avatar.Size) but does no permission checking. |
URI |
getAvatarUrlNoPermCheck(String username,
Avatar.Size size)
Deprecated. Use getAvatarUrlNoPermCheck(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.avatar.Avatar.Size). Since v6.0 |
URI |
getProjectAvatarAbsoluteURL(Project project,
Avatar.Size size)
Returns the URL for the avatar of the given project. |
URI |
getProjectAvatarURL(Project project,
Avatar.Size size)
Returns the URL for the avatar of the given project. |
boolean |
hasCustomUserAvatar(ApplicationUser remoteUser,
ApplicationUser username)
Returns true if the user has configured a custom avatar, false otherwise. |
boolean |
hasCustomUserAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
Deprecated. Use hasCustomUserAvatar(ApplicationUser remoteUser, ApplicationUser username). Since v6.0 |
boolean |
isGravatarEnabled()
Returns true if Gravatar support is enabled. |
void |
setCustomUserAvatar(ApplicationUser remoteUser,
ApplicationUser user,
Long avatarId)
Sets a custom avatar for a given user. |
void |
setCustomUserAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username,
Long avatarId)
Deprecated. Use setCustomUserAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser, Long). Since v6.0 |
| Method Detail |
|---|
Avatar getAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
throws AvatarsDisabledException
getAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0
remoteUser - the User that wants to view an Avatarusername - a String containing a username (may have been deleted)
AvatarsDisabledException - if avatars are disabled
Avatar getAvatar(ApplicationUser remoteUser,
ApplicationUser avatarUser)
throws AvatarsDisabledException
remoteUser - the User that wants to view an AvataravatarUser - the User that the avatar will be returned for (if null it will return a default avatar if it's set or null)
AvatarsDisabledException - if avatars are disabled
URI getAvatarURL(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
throws AvatarsDisabledException
getAvatarURL(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0
remoteUser - a User object for the currently logged in userusername - a String containing a username (may have been deleted)
AvatarsDisabledException - if avatars are disabledgetAvatar(com.atlassian.crowd.embedded.api.User, String)
URI getAvatarURL(ApplicationUser remoteUser,
ApplicationUser avatarUser)
throws AvatarsDisabledException
remoteUser - a User object for the currently logged in useravatarUser - a User object to get the avatar for (if null, the default avatar is used)
AvatarsDisabledException - if avatars are disabledgetAvatar(com.atlassian.crowd.embedded.api.User, String)
URI getAvatarURL(com.atlassian.crowd.embedded.api.User remoteUser,
String username,
Avatar.Size size)
throws AvatarsDisabledException
getAvatarURL(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.avatar.Avatar.Size). Since v6.0
remoteUser - a User object for the currently logged in userusername - a String containing a username (may have been deleted)size - the size of the avatar to be displayed (if null, the default size is used)
AvatarsDisabledException - if avatars are disabledgetAvatar(com.atlassian.crowd.embedded.api.User, String)
URI getAvatarURL(ApplicationUser remoteUser,
ApplicationUser avatarUser,
Avatar.Size size)
throws AvatarsDisabledException
remoteUser - a User object for the currently logged in useravatarUser - a User to get the avatar for (if null, the default avatar is used)size - the size of the avatar to be displayed (if null, the default size is used)
AvatarsDisabledException - if avatars are disabledgetAvatar(com.atlassian.crowd.embedded.api.User, String)
URI getAvatarUrlNoPermCheck(String username,
Avatar.Size size)
throws AvatarsDisabledException
getAvatarUrlNoPermCheck(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.avatar.Avatar.Size). Since v6.0
getAvatarURL(com.atlassian.crowd.embedded.api.User, String,
com.atlassian.jira.avatar.Avatar.Size) but does no permission checking.
username - a String containing a username (may have been deleted)size - the size of the avatar to be displayed (if null, the default size is used)
AvatarsDisabledException - if avatars are disabled
URI getAvatarUrlNoPermCheck(ApplicationUser avatarUser,
Avatar.Size size)
throws AvatarsDisabledException
getAvatarURL(com.atlassian.crowd.embedded.api.User, String,
com.atlassian.jira.avatar.Avatar.Size) but does no permission checking.
avatarUser - a String containing a username (if null, the default avatar is used)size - the size of the avatar to be displayed (if null, the default size is used)
AvatarsDisabledException - if avatars are disabled
URI getAvatarAbsoluteURL(com.atlassian.crowd.embedded.api.User remoteUser,
String username,
Avatar.Size size)
throws AvatarsDisabledException
getAvatarAbsoluteURL(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.avatar.Avatar.Size). Since v6.0
getAvatarURL(com.atlassian.crowd.embedded.api.User, String, com.atlassian.jira.avatar.Avatar.Size)
but returns an absolute URL.
AvatarsDisabledException
URI getAvatarAbsoluteURL(ApplicationUser remoteUser,
ApplicationUser avatarUser,
Avatar.Size size)
throws AvatarsDisabledException
getAvatarURL(com.atlassian.crowd.embedded.api.User, String, com.atlassian.jira.avatar.Avatar.Size)
but returns an absolute URL.
AvatarsDisabledException
URI getProjectAvatarURL(Project project,
Avatar.Size size)
project - the Project of which to get the avatar URLsize - the size of the avatar to be displayed (if null, the default size is used)
URI getProjectAvatarAbsoluteURL(Project project,
Avatar.Size size)
project - the Project of which to get the avatar URLsize - the size of the avatar to be displayed (if null, the default size is used)
@ExperimentalApi
boolean hasCustomUserAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
hasCustomUserAvatar(ApplicationUser remoteUser, ApplicationUser username). Since v6.0
remoteUser - a User object for the currently logged in userusername - the username of the user whose avatar we will check
@ExperimentalApi
boolean hasCustomUserAvatar(ApplicationUser remoteUser,
ApplicationUser username)
remoteUser - a User object for the currently logged in userusername - the username of the user whose avatar we will check
@ExperimentalApi boolean isGravatarEnabled()
@ExperimentalApi
void setCustomUserAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username,
Long avatarId)
throws AvatarsDisabledException,
NoPermissionException
setCustomUserAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser, Long). Since v6.0
remoteUser - a User object for the currently logged in userusername - the username of the user whose avatar we will configureavatarId - the id of the avatar to configure for the user
AvatarsDisabledException - if avatars are disabled
NoPermissionException - if the remote user does not have permission to update the given user's avatarcanSetCustomUserAvatar(com.atlassian.crowd.embedded.api.User, String)
@ExperimentalApi
void setCustomUserAvatar(ApplicationUser remoteUser,
ApplicationUser user,
Long avatarId)
throws AvatarsDisabledException,
NoPermissionException
remoteUser - a User object for the currently logged in useruser - the user whose avatar we will configureavatarId - the id of the avatar to configure for the user
AvatarsDisabledException - if avatars are disabled
NoPermissionException - if the remote user does not have permission to update the given user's avatarcanSetCustomUserAvatar(com.atlassian.crowd.embedded.api.User, String)
@ExperimentalApi
boolean canSetCustomUserAvatar(com.atlassian.crowd.embedded.api.User remoteUser,
String username)
canSetCustomUserAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0
remoteUser - a User object for the currently logged in userusername - the username of the user whose avatar we will configure
@ExperimentalApi
boolean canSetCustomUserAvatar(ApplicationUser remoteUser,
ApplicationUser user)
remoteUser - a User object for the currently logged in useruser - the user whose avatar we will configure
Avatar getAvatarTagged(ApplicationUser remoteUser,
ApplicationUser avatarUser)
throws AvatarsDisabledException
AvatarsDisabledException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||