Uses of Class
com.atlassian.jira.issue.attachment.Attachment

Packages that use Attachment
com.atlassian.jira.bc.issue.attachment   
com.atlassian.jira.imports.project   
com.atlassian.jira.issue   
com.atlassian.jira.issue.attachment   
com.atlassian.jira.issue.fields.renderer.wiki.links   
com.atlassian.jira.issue.fields.rest.json.beans   
com.atlassian.jira.issue.managers   
com.atlassian.jira.issue.thumbnail   
com.atlassian.jira.mail   
com.atlassian.jira.plugin.viewissue   
com.atlassian.jira.rest.v2.issue   
com.atlassian.jira.rest.v2.issue.builder   
com.atlassian.jira.util   
com.atlassian.jira.web.action.issue   
com.atlassian.jira.web.servlet   
 

Uses of Attachment in com.atlassian.jira.bc.issue.attachment
 

Methods in com.atlassian.jira.bc.issue.attachment that return Attachment
 Attachment DefaultAttachmentService.getAttachment(JiraServiceContext jiraServiceContext, Long attachmentId)
           
 Attachment AttachmentService.getAttachment(JiraServiceContext jiraServiceContext, Long attachmentId)
          Retrieves the specified issue.
 

Methods in com.atlassian.jira.bc.issue.attachment that return types with arguments of type Attachment
 List<Attachment> FileNameBasedVersionedAttachmentsList.asList()
           
 List<Attachment> VersionedAttachmentsList.asList()
          Returns the underlying list of attachments.
 

Methods in com.atlassian.jira.bc.issue.attachment with parameters of type Attachment
 boolean FileNameBasedVersionedAttachmentsList.isLatestVersion(Attachment attachment)
          Determines whether the specified attachment is the latest file uploaded amongst the group of files with the same name in the underlying list.
 boolean VersionedAttachmentsList.isLatestVersion(Attachment attachment)
          Determines whether the specified attachment represents the latest version of the corresponding file.
 

Constructor parameters in com.atlassian.jira.bc.issue.attachment with type arguments of type Attachment
FileNameBasedVersionedAttachmentsList(List<Attachment> attachments)
           
 

Uses of Attachment in com.atlassian.jira.imports.project
 

Methods in com.atlassian.jira.imports.project that return Attachment
 Attachment ProjectImportPersister.createAttachment(ExternalAttachment externalAttachment)
          Creates an attachment specified by the ExternalAttachment.
 Attachment DefaultProjectImportPersister.createAttachment(ExternalAttachment externalAttachment)
           
 

Uses of Attachment in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue that return Attachment
 Attachment AttachmentManager.createAttachment(org.ofbiz.core.entity.GenericValue issue, com.atlassian.crowd.embedded.api.User author, String mimetype, String filename, Long filesize, Map<String,Object> attachmentProperties, Date createdTime)
          Deprecated. Use AttachmentManager.createAttachment(File, String, String, User, Issue, Map, Date) instead. Since v5.0.
 Attachment AttachmentManager.createAttachmentCopySourceFile(File file, String filename, String contentType, String attachmentAuthor, Issue issue, Map<String,Object> attachmentProperties, Date createdTime)
          Deprecated. Use AttachmentManager.createAttachment(com.atlassian.jira.issue.attachment.CreateAttachmentParamsBean) instead. Since v6.0.
 Attachment AttachmentManager.getAttachment(Long id)
          Get a single attachment by its ID.
 Attachment AttachmentManager.setThumbnailable(Attachment attachment, boolean thumbnailable)
          Stores the thumbnailble flag for this attachment
 Attachment AttachmentManager.setZip(Attachment attachment, boolean zip)
          Stores the zip flag for this attachment
 

Methods in com.atlassian.jira.issue that return types with arguments of type Attachment
 Collection<Attachment> AbstractIssue.getAttachments()
           
 Collection<Attachment> Issue.getAttachments()
           
 List<Attachment> AttachmentManager.getAttachments(Issue issue)
          Get a list of all attachments for a certain issue.
 List<Attachment> AttachmentManager.getAttachments(Issue issue, Comparator<? super Attachment> comparator)
          Get a list of all attachments for a certain issue, sorted according to the specified comparator.
 

Methods in com.atlassian.jira.issue with parameters of type Attachment
 void AttachmentManager.deleteAttachment(Attachment attachment)
          Delete an attachment from the database and from disk.
 Attachment AttachmentManager.setThumbnailable(Attachment attachment, boolean thumbnailable)
          Stores the thumbnailble flag for this attachment
 Attachment AttachmentManager.setZip(Attachment attachment, boolean zip)
          Stores the zip flag for this attachment
<T> T
AttachmentManager.streamAttachmentContent(Attachment attachment, InputStreamConsumer<T> consumer)
          Get binary content of the attachment
 

Method parameters in com.atlassian.jira.issue with type arguments of type Attachment
 List<Attachment> AttachmentManager.getAttachments(Issue issue, Comparator<? super Attachment> comparator)
          Get a list of all attachments for a certain issue, sorted according to the specified comparator.
 

Uses of Attachment in com.atlassian.jira.issue.attachment
 

Methods in com.atlassian.jira.issue.attachment that return Attachment
 Attachment AttachmentItem.attachment()
           
 

Methods in com.atlassian.jira.issue.attachment that return types with arguments of type Attachment
 List<Attachment> AttachmentItems.attachments()
           
 List<Attachment> AttachmentsCategoriser.Source.getAttachments()
           
 

Methods in com.atlassian.jira.issue.attachment with parameters of type Attachment
 AttachmentItem AttachmentsCategoriser.AttachmentItemCreator.apply(Attachment attachment)
           
 int AttachmentFileNameCreationDateComparator.compare(Attachment a1, Attachment a2)
           
 int AttachmentFileNameComparator.compare(Attachment a1, Attachment a2)
           
 int AttachmentCreationDateComparator.compare(Attachment attachment1, Attachment attachment2)
           
static AttachmentAdapterImpl AttachmentAdapterImpl.fromAttachment(Attachment attachment)
           
 File DefaultAttachmentStore.getAttachmentFile(Attachment attachment)
          Returns the physical File for the given Attachment.
 File AttachmentStore.getAttachmentFile(Attachment attachment)
          Returns the physical File for the given Attachment.
 File DefaultAttachmentStore.getAttachmentFile(Issue issue, Attachment attachment)
          Returns the physical File for the given Attachment.
 File AttachmentStore.getAttachmentFile(Issue issue, Attachment attachment)
          Returns the physical File for the given Attachment.
 File DefaultAttachmentStore.getLegacyThumbnailFile(Attachment attachment)
          Returns the old legacy file name for thumbnails http://jira.atlassian.com/browse/JRA-23311
 File AttachmentStore.getLegacyThumbnailFile(Attachment attachment)
          Returns the old legacy file name for thumbnails http://jira.atlassian.com/browse/JRA-23311
 File DefaultAttachmentStore.getThumbnailFile(Attachment attachment)
          Just like the attachments themselves, thumbnails can succumb to file system encoding problems.
 File AttachmentStore.getThumbnailFile(Attachment attachment)
          Just like the attachments themselves, thumbnails can succumb to file system encoding problems.
 File DefaultAttachmentStore.getThumbnailFile(Issue issue, Attachment attachment)
           
 File AttachmentStore.getThumbnailFile(Issue issue, Attachment attachment)
           
 

Uses of Attachment in com.atlassian.jira.issue.fields.renderer.wiki.links
 

Methods in com.atlassian.jira.issue.fields.renderer.wiki.links that return Attachment
 Attachment JiraAttachmentLink.getAttachment()
           
 

Uses of Attachment in com.atlassian.jira.issue.fields.rest.json.beans
 

Methods in com.atlassian.jira.issue.fields.rest.json.beans with parameters of type Attachment
static AttachmentJsonBean AttachmentJsonBean.shortBean(Attachment attachment, JiraBaseUrls urls, ThumbnailManager thumbnailManager)
           
static AttachmentRenderedJsonBean AttachmentRenderedJsonBean.shortBean(Attachment attachment, JiraBaseUrls urls, ThumbnailManager thumbnailManager, DateTimeFormatterFactory dateTimeFormatterFactory)
           
 

Method parameters in com.atlassian.jira.issue.fields.rest.json.beans with type arguments of type Attachment
static Collection<AttachmentJsonBean> AttachmentJsonBean.shortBeans(Collection<Attachment> attachments, JiraBaseUrls urls, ThumbnailManager thumbnailManager)
           
static Collection<AttachmentRenderedJsonBean> AttachmentRenderedJsonBean.shortBeans(Collection<Attachment> attachments, JiraBaseUrls urls, ThumbnailManager thumbnailManager, DateTimeFormatterFactory dateTimeFormatterFactory)
           
 

Uses of Attachment in com.atlassian.jira.issue.managers
 

Methods in com.atlassian.jira.issue.managers that return Attachment
 Attachment DefaultAttachmentManager.createAttachment(org.ofbiz.core.entity.GenericValue issue, com.atlassian.crowd.embedded.api.User author, String mimetype, String filename, Long filesize, Map<String,Object> attachmentProperties, Date createdTime)
           
 Attachment DefaultAttachmentManager.createAttachmentCopySourceFile(File file, String filename, String contentType, String attachmentAuthor, Issue issue, Map<String,Object> attachmentProperties, Date createdTime)
           
 Attachment DefaultAttachmentManager.getAttachment(Long id)
           
 Attachment DefaultAttachmentManager.setThumbnailable(Attachment attachment, boolean thumbnailable)
           
 Attachment DefaultAttachmentManager.setZip(Attachment attachment, boolean zip)
           
 

Methods in com.atlassian.jira.issue.managers that return types with arguments of type Attachment
 List<Attachment> DefaultAttachmentManager.getAttachments(Issue issue)
           
 List<Attachment> DefaultAttachmentManager.getAttachments(Issue issue, Comparator<? super Attachment> comparator)
           
 List<Attachment> DefaultAttachmentManager.getStoredAttachments(Issue issue)
           
 

Methods in com.atlassian.jira.issue.managers with parameters of type Attachment
 void DefaultAttachmentManager.deleteAttachment(Attachment attachment)
           
 Attachment DefaultAttachmentManager.setThumbnailable(Attachment attachment, boolean thumbnailable)
           
 Attachment DefaultAttachmentManager.setZip(Attachment attachment, boolean zip)
           
<T> T
DefaultAttachmentManager.streamAttachmentContent(Attachment attachment, InputStreamConsumer<T> consumer)
           
 

Method parameters in com.atlassian.jira.issue.managers with type arguments of type Attachment
 List<Attachment> DefaultAttachmentManager.getAttachments(Issue issue, Comparator<? super Attachment> comparator)
           
 

Uses of Attachment in com.atlassian.jira.issue.thumbnail
 

Methods in com.atlassian.jira.issue.thumbnail with parameters of type Attachment
 com.atlassian.core.util.thumbnail.Thumbnail DisabledThumbNailManager.getThumbnail(Attachment attachment)
           
 com.atlassian.core.util.thumbnail.Thumbnail DefaultThumbnailManager.getThumbnail(Attachment attachment)
           
 com.atlassian.core.util.thumbnail.Thumbnail ThumbnailManager.getThumbnail(Attachment attachment)
          Returns the Thumbnail that corresponds to an Attachment, or null if the given attachment is not an image.
 com.atlassian.core.util.thumbnail.Thumbnail DisabledThumbNailManager.getThumbnail(Issue issue, Attachment attachment)
           
 com.atlassian.core.util.thumbnail.Thumbnail DefaultThumbnailManager.getThumbnail(Issue issue, Attachment attachment)
           
 com.atlassian.core.util.thumbnail.Thumbnail ThumbnailManager.getThumbnail(Issue issue, Attachment attachment)
          Returns the Thumbnail that corresponds to an Attachment, or null if the given attachment is not an image.
 boolean DisabledThumbNailManager.isThumbnailable(Attachment attachment)
           
 boolean DefaultThumbnailManager.isThumbnailable(Attachment attachment)
           
 boolean ThumbnailManager.isThumbnailable(Attachment attachmentGV)
           
 boolean DisabledThumbNailManager.isThumbnailable(Issue issue, Attachment attachment)
           
 boolean DefaultThumbnailManager.isThumbnailable(Issue issue, Attachment attachment)
           
 boolean ThumbnailManager.isThumbnailable(Issue issue, Attachment attachmentGV)
           
<T> T
DisabledThumbNailManager.streamThumbnailContent(Attachment attachment, InputStreamConsumer<T> consumer)
           
<T> T
DefaultThumbnailManager.streamThumbnailContent(Attachment attachment, InputStreamConsumer<T> consumer)
           
<T> T
ThumbnailManager.streamThumbnailContent(Attachment attachment, InputStreamConsumer<T> consumer)
          Get binary content of the thumbnail
 

Method parameters in com.atlassian.jira.issue.thumbnail with type arguments of type Attachment
 Collection<com.atlassian.core.util.thumbnail.Thumbnail> DefaultThumbnailManager.getThumbnails(Collection<Attachment> attachments, Issue issue)
           
 

Uses of Attachment in com.atlassian.jira.mail
 

Methods in com.atlassian.jira.mail that return types with arguments of type Attachment
 Collection<Attachment> TemplateIssue.getAttachments()
           
 

Uses of Attachment in com.atlassian.jira.plugin.viewissue
 

Methods in com.atlassian.jira.plugin.viewissue that return types with arguments of type Attachment
protected  Comparator<Attachment> AttachmentBlockContextProvider.attachmentComparator()
           
 

Constructors in com.atlassian.jira.plugin.viewissue with parameters of type Attachment
AttachmentBlockContextProvider.SimpleAttachment(Attachment attachment, boolean latest, boolean exapandAsZip, ThumbnailedImage thumbnail, boolean canDelete)
           
 

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

Methods in com.atlassian.jira.rest.v2.issue with parameters of type Attachment
protected  boolean AttachmentResource.hasPermissionToViewAttachment(com.atlassian.crowd.embedded.api.User user, Attachment attachment)
           
 

Constructors in com.atlassian.jira.rest.v2.issue with parameters of type Attachment
AttachmentBeanBuilder(JiraBaseUrls jiraBaseUrls, ThumbnailManager thumbnailManager, Attachment attachment)
          Creates a new AttachmentBeanBuilder.
 

Uses of Attachment in com.atlassian.jira.rest.v2.issue.builder
 

Methods in com.atlassian.jira.rest.v2.issue.builder with parameters of type Attachment
 AttachmentBeanBuilder BeanBuilderFactory.newAttachmentBeanBuilder(Attachment attachment)
          Returns a new instance of an AttachmentBeanBuilder.
 AttachmentBeanBuilder BeanBuilderFactoryImpl.newAttachmentBeanBuilder(Attachment attachment)
          Returns a new AttachmentBeanBuilder.
 

Uses of Attachment in com.atlassian.jira.util
 

Methods in com.atlassian.jira.util with parameters of type Attachment
static File AttachmentUtils.getAttachmentFile(Attachment attachment)
          Deprecated. Returns the physical File for the given Attachment.
static File AttachmentUtils.getAttachmentFile(Issue issue, Attachment attachment)
          Deprecated. Returns the physical File for the given Attachment.
static File AttachmentUtils.getLegacyThumbnailFile(Attachment attachment)
          Deprecated. Returns the old legacy file name for thumbnails http://jira.atlassian.com/browse/JRA-23311
static File AttachmentUtils.getThumbnailFile(Attachment attachment)
          Deprecated. Just like the attachments themselves, thumbnails can succumb to file system encoding problems.
static File AttachmentUtils.getThumbnailFile(Issue issue, Attachment attachment)
          Deprecated.  
 

Uses of Attachment in com.atlassian.jira.web.action.issue
 

Methods in com.atlassian.jira.web.action.issue that return Attachment
 Attachment DeleteAttachment.getAttachment()
           
 

Methods in com.atlassian.jira.web.action.issue that return types with arguments of type Attachment
 Collection<Attachment> AbstractViewIssue.getAttachments()
           
 

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

Methods in com.atlassian.jira.web.servlet that return Attachment
protected  Attachment ViewAttachmentServlet.getAttachment(String query)
          Looks up the attachment by reading the id from the query string.
 

Methods in com.atlassian.jira.web.servlet with parameters of type Attachment
protected  boolean ViewAttachmentServlet.hasPermissionToViewAttachment(String username, Attachment attachment)
          Checks if the given user had permission to see the attachemnt.
 void MimeSniffingKit.setAttachmentResponseHeaders(Attachment attachment, String userAgent, javax.servlet.http.HttpServletResponse httpServletResponse)
          Sets the appropriate HTTP response headers on an attachment download response.
 



Copyright © 2002-2014 Atlassian. All Rights Reserved.