Uses of Class
com.atlassian.jira.web.util.AttachmentException

Packages that use AttachmentException
com.atlassian.jira.issue   
com.atlassian.jira.issue.managers   
com.atlassian.jira.plugins.mail.handlers   
com.atlassian.jira.service.util.handler   
com.atlassian.jira.util   
com.atlassian.jira.web.util   
 

Uses of AttachmentException in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue that throw AttachmentException
 List<ChangeItemBean> AttachmentManager.convertTemporaryAttachments(com.atlassian.crowd.embedded.api.User user, Issue issue, List<Long> selectedAttachments, TemporaryAttachmentsMonitor temporaryAttachmentsMonitor)
          Converts a set of provided temporary attachments to real attachments attached to an issue.
 ChangeItemBean AttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, org.ofbiz.core.entity.GenericValue issue)
          Deprecated. Use AttachmentManager.createAttachment(File, String, String, User, Issue) instead. Since v5.0.
 ChangeItemBean AttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, org.ofbiz.core.entity.GenericValue issue, Map<String,Object> attachmentProperties, Date createdTime)
          Deprecated. Use AttachmentManager.createAttachment(File, String, String, User, Issue, Map, Date) instead. Since v5.0.
 ChangeItemBean AttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, Issue issue)
          Same as the AttachmentManager.createAttachment(File, String, String, User, Issue, Map, Date) method, except it submits no attachmentProperties and uses now() for the created time.
 ChangeItemBean AttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, Issue issue, Map<String,Object> attachmentProperties, Date createdTime)
          Create an attachment both on disk, and in the database.
 Attachment AttachmentManager.createAttachmentCopySourceFile(File file, String filename, String contentType, String attachmentAuthor, Issue issue, Map<String,Object> attachmentProperties, Date createdTime)
          Create an attachment both on disk, and in the database by copying the provided file instead of moving it.
 

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

Methods in com.atlassian.jira.issue.managers that throw AttachmentException
 List<ChangeItemBean> DefaultAttachmentManager.convertTemporaryAttachments(com.atlassian.crowd.embedded.api.User user, Issue issue, List<Long> selectedAttachments, TemporaryAttachmentsMonitor temporaryAttachmentsMonitor)
           
 ChangeItemBean DefaultAttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User remoteUser, org.ofbiz.core.entity.GenericValue issue)
           
 ChangeItemBean DefaultAttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, org.ofbiz.core.entity.GenericValue issue, Map<String,Object> attachmentProperties, Date createdTime)
           
 ChangeItemBean DefaultAttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User remoteUser, Issue issue)
           
 ChangeItemBean DefaultAttachmentManager.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User remoteUser, Issue issue, 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)
           
protected  void DefaultAttachmentManager.createAttachmentOnDisk(Attachment attachment, File file, com.atlassian.crowd.embedded.api.User user)
           
protected  void DefaultAttachmentManager.createAttachmentOnDiskCopySourceFile(Attachment attachment, File file)
           
 

Uses of AttachmentException in com.atlassian.jira.plugins.mail.handlers
 

Methods in com.atlassian.jira.plugins.mail.handlers that throw AttachmentException
 ChangeItemBean DryRunMessageHandlerContext.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, Issue issue)
           
 

Uses of AttachmentException in com.atlassian.jira.service.util.handler
 

Methods in com.atlassian.jira.service.util.handler that throw AttachmentException
 ChangeItemBean MessageHandlerContext.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, Issue issue)
          Creates attachment (when run in real mode) or does nothing if run in dry run mode.
 ChangeItemBean DefaultMessageHandlerContext.createAttachment(File file, String filename, String contentType, com.atlassian.crowd.embedded.api.User author, Issue issue)
           
 

Uses of AttachmentException in com.atlassian.jira.util
 

Methods in com.atlassian.jira.util that throw AttachmentException
static void AttachmentUtils.checkValidAttachmentDirectory(Issue issue)
          Checks that the Attachment directory of the given issue is right to go - writable, accessible etc.
static void AttachmentUtils.checkValidTemporaryAttachmentDirectory()
           
 

Uses of AttachmentException in com.atlassian.jira.web.util
 

Methods in com.atlassian.jira.web.util that throw AttachmentException
 ChangeItemBean DefaultWebAttachmentManager.createAttachment(webwork.multipart.MultiPartRequestWrapper requestWrapper, com.atlassian.crowd.embedded.api.User remoteUser, org.ofbiz.core.entity.GenericValue issue, String fileParamName, Map<String,Object> attachmentProperties)
           
 ChangeItemBean WebAttachmentManager.createAttachment(webwork.multipart.MultiPartRequestWrapper requestWrapper, com.atlassian.crowd.embedded.api.User remoteUser, org.ofbiz.core.entity.GenericValue issue, String fileParamName, Map<String,Object> attachmentProperties)
          Deprecated. Use WebAttachmentManager.createAttachment(webwork.multipart.MultiPartRequestWrapper, com.atlassian.crowd.embedded.api.User, com.atlassian.jira.issue.Issue, String, java.util.Map) instead. Since v5.0.
 ChangeItemBean DefaultWebAttachmentManager.createAttachment(webwork.multipart.MultiPartRequestWrapper requestWrapper, com.atlassian.crowd.embedded.api.User remoteUser, Issue issue, String fileParamName, Map<String,Object> attachmentProperties)
           
 ChangeItemBean WebAttachmentManager.createAttachment(webwork.multipart.MultiPartRequestWrapper requestWrapper, com.atlassian.crowd.embedded.api.User remoteUser, Issue issue, String fileParamName, Map<String,Object> attachmentProperties)
          Create an issue's attachment.
 TemporaryAttachment DefaultWebAttachmentManager.createTemporaryAttachment(InputStream stream, String fileName, String contentType, long size, Issue issue, Project project)
           
 TemporaryAttachment WebAttachmentManager.createTemporaryAttachment(InputStream stream, String fileName, String contentType, long size, Issue issue, Project project)
          Creates a temporary attachment on disk.
 TemporaryAttachment DefaultWebAttachmentManager.createTemporaryAttachment(webwork.multipart.MultiPartRequestWrapper requestWrapper, String fileParamName, Issue issue, Project project)
           
 TemporaryAttachment WebAttachmentManager.createTemporaryAttachment(webwork.multipart.MultiPartRequestWrapper requestWrapper, String fileParamName, Issue issue, Project project)
          Creates a temporary attachment on disk.
 boolean DefaultWebAttachmentManager.validateAttachmentIfExists(webwork.multipart.MultiPartRequestWrapper requestWrapper, String fileParamName, boolean required)
           
 boolean WebAttachmentManager.validateAttachmentIfExists(webwork.multipart.MultiPartRequestWrapper requestWrapper, String fileParamName, boolean required)
          Determine whether an attachment exists and is valid (i.e.
 



Copyright © 2002-2012 Atlassian. All Rights Reserved.