com.atlassian.jira.rest.util
Class AttachmentHelper

java.lang.Object
  extended by com.atlassian.jira.rest.util.AttachmentHelper

public class AttachmentHelper
extends Object

Since:
v5.0

Nested Class Summary
static class AttachmentHelper.ValidationError
           
static class AttachmentHelper.ValidationResult
           
 
Constructor Summary
AttachmentHelper(XsrfInvocationChecker xsrfChecker, JiraAuthenticationContext jiraAuthenticationContext)
           
 
Method Summary
 AttachmentHelper.ValidationResult validate(javax.servlet.http.HttpServletRequest request, String filename, Long size)
          Validates the uploaded image.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AttachmentHelper

public AttachmentHelper(XsrfInvocationChecker xsrfChecker,
                        JiraAuthenticationContext jiraAuthenticationContext)
Method Detail

validate

public AttachmentHelper.ValidationResult validate(javax.servlet.http.HttpServletRequest request,
                                                  String filename,
                                                  @Nullable
                                                  Long size)
Validates the uploaded image. Validation includes - XSRF token check - Filename check (is it blank) - Size is not valid (Either not supplied by the client or is 0) - Filesize is above the max attachment size

Parameters:
request - where the image data is
filename - filename of image
size - size of image
Returns:
Validation result


Copyright © 2002-2013 Atlassian. All Rights Reserved.