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 /**
11 * Get the max file size
12 *
13 * @return The max file size
14 */
15 public long getMaxFileSize();
16
17 /**
18 * Get the max size
19 *
20 * @return The max size
21 */
22 public long getMaxSize();
23 }