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.managers   
com.atlassian.jira.issue.thumbnail   
com.atlassian.jira.mail   
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, java.lang.Long attachmentId)
           
 Attachment AttachmentService.getAttachment(JiraServiceContext jiraServiceContext, java.lang.Long attachmentId)
          Retrieves the specified issue.
 

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

Methods in com.atlassian.jira.bc.issue.attachment with parameters of type Attachment
 boolean VersionedAttachmentsList.isLatestVersion(Attachment attachment)
          Determines whether the specified attachment represents the latest version of the corresponding file.
 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.
 

Constructor parameters in com.atlassian.jira.bc.issue.attachment with type arguments of type Attachment
FileNameBasedVersionedAttachmentsList(java.util.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.opensymphony.user.User author, java.lang.String mimetype, java.lang.String filename, java.lang.Long filesize, java.util.Map attachmentProperties, java.util.Date createdTime)
          Create an attachment in the database.
 Attachment AttachmentManager.createAttachmentCopySourceFile(java.io.File file, java.lang.String filename, java.lang.String contentType, java.lang.String attachmentAuthor, Issue issue, java.util.Map attachmentProperties, java.util.Date createdTime)
          Create an attachment both on disk, and in the database by copying the provided file instead of moving it.
 Attachment AttachmentManager.getAttachment(java.lang.Long id)
          Get a single attachment by its ID.
 

Methods in com.atlassian.jira.issue that return types with arguments of type Attachment
 java.util.Collection<Attachment> AbstractIssue.getAttachments()
           
 java.util.Collection<Attachment> Issue.getAttachments()
           
 java.util.List<Attachment> AttachmentManager.getAttachments(org.ofbiz.core.entity.GenericValue issue)
          Deprecated. use #getAttachments(Issue) instead. Since v4.0
 java.util.List<Attachment> AttachmentManager.getAttachments(Issue issue)
          Get a list of all attachments for a certain issue.
 java.util.List<Attachment> AttachmentManager.getAttachments(Issue issue, java.util.Comparator<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.
 

Method parameters in com.atlassian.jira.issue with type arguments of type Attachment
 java.util.List<Attachment> AttachmentManager.getAttachments(Issue issue, java.util.Comparator<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 with parameters of type Attachment
 int AttachmentFileNameComparator.compare(Attachment a1, Attachment a2)
           
 int AttachmentCreationDateComparator.compare(Attachment attachment1, Attachment attachment2)
           
 int AttachmentFileNameCreationDateComparator.compare(Attachment a1, Attachment a2)
           
 

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.managers
 

Methods in com.atlassian.jira.issue.managers that return Attachment
 Attachment DefaultAttachmentManager.createAttachment(org.ofbiz.core.entity.GenericValue issue, com.opensymphony.user.User author, java.lang.String mimetype, java.lang.String filename, java.lang.Long filesize, java.util.Map attachmentProperties, java.util.Date createdTime)
           
 Attachment DefaultAttachmentManager.createAttachmentCopySourceFile(java.io.File file, java.lang.String filename, java.lang.String contentType, java.lang.String attachmentAuthor, Issue issue, java.util.Map attachmentProperties, java.util.Date createdTime)
           
 Attachment DefaultAttachmentManager.getAttachment(java.lang.Long id)
          Get a single attachment by its id.
 

Methods in com.atlassian.jira.issue.managers that return types with arguments of type Attachment
 java.util.List<Attachment> DefaultAttachmentManager.getAttachments(org.ofbiz.core.entity.GenericValue issue)
           
 java.util.List<Attachment> DefaultAttachmentManager.getAttachments(Issue issue)
           
 java.util.List<Attachment> DefaultAttachmentManager.getAttachments(Issue issue, java.util.Comparator<Attachment> comparator)
           
 

Methods in com.atlassian.jira.issue.managers with parameters of type Attachment
protected  void DefaultAttachmentManager.createAttachmentOnDisk(Attachment attachment, java.io.File file, com.opensymphony.user.User user)
           
protected  void DefaultAttachmentManager.createAttachmentOnDiskCopySourceFile(Attachment attachment, java.io.File file)
           
 void DefaultAttachmentManager.deleteAttachment(Attachment attachment)
           
 

Method parameters in com.atlassian.jira.issue.managers with type arguments of type Attachment
 java.util.List<Attachment> DefaultAttachmentManager.getAttachments(Issue issue, java.util.Comparator<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 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 DefaultThumbnailManager.getThumbnail(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 ThumbnailManager.isThumbnailable(Attachment attachmentGV)
           
 boolean DefaultThumbnailManager.isThumbnailable(Attachment attachment)
           
 

Method parameters in com.atlassian.jira.issue.thumbnail with type arguments of type Attachment
 java.util.Collection<com.atlassian.core.util.thumbnail.Thumbnail> DisabledThumbNailManager.getThumbnails(java.util.Collection<Attachment> attachments, com.opensymphony.user.User user)
           
 java.util.Collection<com.atlassian.core.util.thumbnail.Thumbnail> ThumbnailManager.getThumbnails(java.util.Collection<Attachment> attachments, com.opensymphony.user.User user)
           
 java.util.Collection<com.atlassian.core.util.thumbnail.Thumbnail> DefaultThumbnailManager.getThumbnails(java.util.Collection<Attachment> attachments, com.opensymphony.user.User user)
           
 

Uses of Attachment in com.atlassian.jira.mail
 

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

Uses of Attachment in com.atlassian.jira.util
 

Methods in com.atlassian.jira.util with parameters of type Attachment
static java.io.File AttachmentUtils.getAttachmentFile(Attachment attachment)
          Returns the physical File for the given Attachment.
static java.io.File AttachmentUtils.getThumbnailFile(Attachment attachment)
           
 

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
 java.util.Collection<Attachment> AbstractViewIssue.getAttachments()
           
 

Methods in com.atlassian.jira.web.action.issue with parameters of type Attachment
 AttachmentZipKit.AttachmentZipEntries ViewIssue.getZipEntries(Attachment attachment)
          Returns a list of zip entries for the specified attachment.
 boolean ViewIssue.shouldExpandAsZip(Attachment attachment)
          Determines whether the specified attachment should be expanded as a zip file.
 

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

Methods in com.atlassian.jira.web.servlet that return Attachment
protected  Attachment ViewAttachmentServlet.getAttachment(java.lang.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
 java.lang.String MimeSniffingKit.getContentDisposition(Attachment attachment, java.lang.String userAgent)
          This will suggest a content disposition type (inline or attachment) for the given Attachment, respecting the settings in JIRA and taking IE badness into account.
protected  boolean ViewAttachmentServlet.hasPermissionToViewAttachment(java.lang.String username, Attachment attachment)
          Checks if the given user had permission to see the attachemnt.
 



Copyright © 2002-2010 Atlassian. All Rights Reserved.