Uses of Interface
com.atlassian.jira.avatar.Avatar

Packages that use Avatar
com.atlassian.jira.avatar   
com.atlassian.jira.mock   
com.atlassian.jira.project   
com.atlassian.jira.projectconfig.beans   
com.atlassian.jira.rest.v2.issue   
com.atlassian.jira.web.servlet   
 

Uses of Avatar in com.atlassian.jira.avatar
 

Classes in com.atlassian.jira.avatar that implement Avatar
 class AvatarImpl
          Immutable implementation.
 

Methods in com.atlassian.jira.avatar that return Avatar
 Avatar AvatarStore.create(Avatar avatar)
          Creates an avatar with the properties of the given avatar.
 Avatar AvatarManagerImpl.create(Avatar avatar)
           
 Avatar CachingTaggingAvatarStore.create(Avatar avatar)
           
 Avatar AvatarManager.create(Avatar avatar)
          Creates a database record for the given avatar.
 Avatar AvatarManagerImpl.create(Avatar avatar, InputStream imageData, Selection croppingSelection)
           
 Avatar AvatarManager.create(Avatar avatar, InputStream image, Selection selection)
          Creates a database record for the given avatar and uses the content of the InputStream as the image.
 Avatar AvatarManagerImpl.create(String fileName, String contentType, ApplicationUser owner, InputStream imageData, Selection croppingSelection)
           
 Avatar AvatarManager.create(String fileName, String contentType, ApplicationUser owner, InputStream image, Selection selection)
          Creates a database record for the given avatar and uses the content of the InputStream as the image.
 Avatar AvatarManagerImpl.create(String fileName, String contentType, Project owner, InputStream imageData, Selection croppingSelection)
           
 Avatar AvatarManager.create(String fileName, String contentType, Project owner, InputStream image, Selection selection)
          Creates a database record for the given avatar and uses the content of the InputStream as the image.
protected  Avatar AvatarServiceImpl.getAnonymousAvatar()
          Returns the anonymous avatar, if configured.
 Avatar AvatarServiceImpl.getAvatar(ApplicationUser remoteUser, ApplicationUser avatarUser)
           
 Avatar AvatarService.getAvatar(ApplicationUser remoteUser, ApplicationUser avatarUser)
          Returns the Avatar for the given user, if configured.
 Avatar AvatarServiceImpl.getAvatar(com.atlassian.crowd.embedded.api.User remoteUser, String username)
           
 Avatar AvatarService.getAvatar(com.atlassian.crowd.embedded.api.User remoteUser, String username)
          Deprecated. Use AvatarService.getAvatar(com.atlassian.jira.user.ApplicationUser, com.atlassian.jira.user.ApplicationUser). Since v6.0
 Avatar AvatarServiceImpl.getAvatarTagged(ApplicationUser remoteUser, ApplicationUser avatarUser)
           
 Avatar AvatarService.getAvatarTagged(ApplicationUser remoteUser, ApplicationUser avatarUser)
           
 Avatar AvatarStore.getById(Long avatarId)
          Retrieves the Avatar by id.
 Avatar AvatarManagerImpl.getById(Long avatarId)
           
 Avatar CachingTaggingAvatarStore.getById(Long avatarId)
           
 Avatar AvatarManager.getById(Long avatarId)
          Retrieve the avatar with the given id.
 Avatar AvatarStore.getByIdTagged(Long avatarId)
          Retrieves the Avatar by id, ensuring the avatar file is tagged with metadata identifying the image came from JIRA.
 Avatar AvatarManagerImpl.getByIdTagged(Long avatarId)
           
 Avatar CachingTaggingAvatarStore.getByIdTagged(Long avatarId)
           
 Avatar AvatarManager.getByIdTagged(Long avatarId)
          Retrieve the avatar with the given id, ensuring the avatar file is tagged with metadata identifying the image came from JIRA.
protected  Avatar AvatarServiceImpl.getDefaultAvatar()
          Returns the default avatar, if configured.
 

Methods in com.atlassian.jira.avatar that return types with arguments of type Avatar
 AvatarPickerHelperImpl.Result<Avatar> AvatarPickerHelperImpl.convertTemporaryToReal(String ownerId, Avatar.Type type, Selection selection)
           
 AvatarPickerHelperImpl.Result<Avatar> AvatarPickerHelper.convertTemporaryToReal(String ownerId, Avatar.Type type, Selection selection)
          Converts temporary avatar (uploaded) to real avatar
 List<Avatar> AvatarStore.getAllSystemAvatars(Avatar.Type type)
          Provides a list of all system avatars.
 List<Avatar> AvatarManagerImpl.getAllSystemAvatars(Avatar.Type type)
           
 List<Avatar> CachingTaggingAvatarStore.getAllSystemAvatars(Avatar.Type type)
           
 List<Avatar> AvatarManager.getAllSystemAvatars(Avatar.Type type)
          Provides a list of all system avatars.
 List<Avatar> AvatarStore.getCustomAvatarsForOwner(Avatar.Type type, String ownerId)
          Provides a list of all avatars that are of the given type which have the given owner.
 List<Avatar> AvatarManagerImpl.getCustomAvatarsForOwner(Avatar.Type type, String ownerId)
           
 List<Avatar> CachingTaggingAvatarStore.getCustomAvatarsForOwner(Avatar.Type type, String ownerId)
           
 List<Avatar> AvatarManager.getCustomAvatarsForOwner(Avatar.Type type, String ownerId)
          Provides a list of all avatars that are of the given type which have the given owner.
 

Methods in com.atlassian.jira.avatar with parameters of type Avatar
protected  boolean AvatarServiceImpl.canViewAvatar(ApplicationUser user, Avatar avatar)
          Returns true if the passed in user has permission to view the passed in avatar.
 Avatar AvatarStore.create(Avatar avatar)
          Creates an avatar with the properties of the given avatar.
 Avatar AvatarManagerImpl.create(Avatar avatar)
           
 Avatar CachingTaggingAvatarStore.create(Avatar avatar)
           
 Avatar AvatarManager.create(Avatar avatar)
          Creates a database record for the given avatar.
 Avatar AvatarManagerImpl.create(Avatar avatar, InputStream imageData, Selection croppingSelection)
           
 Avatar AvatarManager.create(Avatar avatar, InputStream image, Selection selection)
          Creates a database record for the given avatar and uses the content of the InputStream as the image.
 boolean AvatarManagerImpl.isAvatarOwner(Avatar avatar, String ownerId)
           
 boolean AvatarManager.isAvatarOwner(Avatar avatar, String ownerId)
          Deprecated. To be removed. Since v6.0
 void AvatarManagerImpl.readAvatarData(Avatar avatar, AvatarManager.ImageSize size, Consumer<InputStream> dataAccessor)
           
 void AvatarManager.readAvatarData(Avatar avatar, AvatarManager.ImageSize size, Consumer<InputStream> dataAccessor)
          Provides read-only access to the data of the avatar image as an InputStream passed to the provided dataProcessor.
 void AvatarStore.update(Avatar avatar)
          Updates an avatar's properties to match those in the given avatar.
 void AvatarManagerImpl.update(Avatar avatar)
           
 void CachingTaggingAvatarStore.update(Avatar avatar)
           
 void AvatarManager.update(Avatar avatar)
          Saves the avatar as an updated version of the avatar with the same id that is already in the database.
 

Uses of Avatar in com.atlassian.jira.mock
 

Classes in com.atlassian.jira.mock that implement Avatar
 class MockAvatar
          Non production bean implementation of Avatar.
 

Uses of Avatar in com.atlassian.jira.project
 

Methods in com.atlassian.jira.project that return Avatar
 Avatar MockProject.getAvatar()
           
 Avatar ProjectImpl.getAvatar()
           
 Avatar Project.getAvatar()
          Gives the currently-configured Avatar for this project.
 

Methods in com.atlassian.jira.project with parameters of type Avatar
 void MockProject.setAvatar(Avatar avatar)
           
 

Uses of Avatar in com.atlassian.jira.projectconfig.beans
 

Methods in com.atlassian.jira.projectconfig.beans that return Avatar
 Avatar SimpleProject.getAvatar()
           
 

Uses of Avatar in com.atlassian.jira.rest.v2.issue
 

Methods in com.atlassian.jira.rest.v2.issue with parameters of type Avatar
static AvatarBean AvatarBeanFactory.createAvatarBean(Avatar avatar)
          Creates an AvatarBean from Avatar domain object
 

Method parameters in com.atlassian.jira.rest.v2.issue with type arguments of type Avatar
static List<AvatarBean> AvatarBeanFactory.createAvatarBeans(List<Avatar> avatars)
          Create a list of AvatarBeans given the passed List of Avatar domain objects.
 

Uses of Avatar in com.atlassian.jira.web.servlet
 

Methods in com.atlassian.jira.web.servlet with parameters of type Avatar
protected  boolean AbstractAvatarServlet.avatarOkForOwner(String ownerId, Avatar avatar)
           
 



Copyright © 2002-2014 Atlassian. All Rights Reserved.