View Javadoc

1   package com.atlassian.plugins.rest.common.multipart;
2   
3   /**
4    * Configuration for multipart config
5    *
6    * @since 2.4
7    */
8   public interface MultipartConfig {
9       /**
10       * Get the max file size
11       *
12       * @return The max file size
13       */
14      public long getMaxFileSize();
15  
16      /**
17       * Get the max size
18       *
19       * @return The max size
20       */
21      public long getMaxSize();
22  }