forked from osopromadze/Spring-Boot-Blog-REST-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppConstants.java
More file actions
31 lines (17 loc) · 822 Bytes
/
AppConstants.java
File metadata and controls
31 lines (17 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.sopromadze.blogapi.utils;
public class AppConstants {
public static final String DEFAULT_PAGE_NUMBER = "0";
public static final String DEFAULT_PAGE_SIZE = "30";
public static final int MAX_PAGE_SIZE = 30;
public static final String CREATED_AT = "createdAt";
public static final String ID = "id";
public static final String PHOTO = "Photo";
public static final String ALBUM = "Album";
public static final String USERNAME = "username";
public static final String USER = "User";
public static final String CATEGORY = "Category";
public static final String TAG = "Tag";
public static final String POST = "Post";
public static final String TODO = "ToDo";
public static final String YOU_DON_T_HAVE_PERMISSION_TO_MAKE_THIS_OPERATION = "You don't have permission to make this operation";
}