EndPoint.java
8.55 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package etelligens.com.foodsafety.utils;
public class EndPoint {
// production server base url............
//public static final String ETE_BASE_URL = "https://foodsafety.iknowsolution.com/api/v2/";
//public static final String ETE_IMAGE_BASEURL = "https://foodsafety.iknowsolution.com";
//pro
//public static final String ETE_BASE_URL = "http://52.74.130.36/api/v2/";
//public static final String ETE_IMAGE_BASEURL = "http://52.74.130.36";
////test
//配置接口地址
public static final String Service_Utl = "http://52.74.130.36:81";
public static final String ETE_BASE_URL = Service_Utl + "/api/v2/";
public static final String ETE_IMAGE_BASEURL = Service_Utl;
//pay
public static final String PAY_BASE_URL = "http://8.130.38.56:8081/";
public static final String TEST_PAY = "http://10.0.0.13:2033/";
// staging server base url............
//public static final String STAGING_BASE_URL = "https://foodsafetyproduction.iknowsolution.com/api/v2/";
//public static final String STAGING_IMAGE_BASEURL = "https://foodsafetyproduction.iknowsolution.com";
public static final String STAGING_BASE_URL = Service_Utl + "/api/v2/";
public static final String STAGING_IMAGE_BASEURL = Service_Utl;
public static final String ETE_DELETE_STORAGE_AREA = ETE_BASE_URL + "restaurent/delete_storageById/";
public static final String ETE_GET_ALL_OUTLETS = ETE_BASE_URL + "restaurent/getAlloutlets/";
public static final String ETE_USERS_LIST_STORE = ETE_BASE_URL + "user/getallUsersStore";
public static final String ETE_ADD_NEW_USER = ETE_BASE_URL + "user/register";
public static final String ETE_GET_USER_DETAILS = ETE_BASE_URL + "user/getUserDetailsById/";
/*new api's*/
public static final String ETE_USER_LOGIN = ETE_BASE_URL + "user/login";
public static final String ETE_UPDATE_USERPROFILE = ETE_BASE_URL + "user/update_profile";
public static final String ETE_GET_DASHBOARD_COUNT = ETE_BASE_URL + "product/getDashboardItemCounts";
public static final String ETE_GET_ALL_PARTNER = ETE_BASE_URL + "restaurent/getAllpartner";
public static final String ETE_GET_ALL_CHOOSE_OUTLETS = ETE_BASE_URL + "restaurent/getAlloutlets/";
/*temp module*/
public static final String ETE_GET_TIMEFRAME_LIST = ETE_BASE_URL + "restaurent/getAllTimeFrames";
public static final String ETE_CHANGE_TIMEFRAME_STATUS = ETE_BASE_URL + "restaurent/upddateTimeFramStatus/";
public static final String ETE_ADD_EDIT_TIMEFRAME = ETE_BASE_URL + "restaurent/add_timeframe";
public static final String ETE_TEMP_LOG_HISTORY = ETE_BASE_URL + "temprature/getTempLogHistory/";
public static final String ETE_GET_TEMP_PRODUCT_BY_ID = ETE_BASE_URL + "temprature/getTempDetailByproductId/";
public static final String ETE_GET_TIMEFRAME_BY_ID = ETE_BASE_URL + "restaurent/getTimeFrameById/";
public static final String ETE_DELETE_TIME_FRAME = ETE_BASE_URL + "restaurent/delete_timeframeById/";
public static final String ETE_GET_ALL_STORAGE_AREA = ETE_BASE_URL + "restaurent/getAllStorageArea";
public static final String ETE_GET_PRODUCT_BY_STORAGEID = ETE_BASE_URL + "product/getProductByStorageId";
public static final String ETE_CREATE_PRO_BY_STORAGEID = ETE_BASE_URL + "product/save_storage_product";
public static final String ETE_REMOVE_MEASURMENT = ETE_BASE_URL + "temprature/removeMeasurementafterDays";
public static final String ETE_PRODUCT_DETAILS_BYID = ETE_BASE_URL + "product/getProductById/";
public static final String ETE_DELETE_PRODUCT_BY_ID = ETE_BASE_URL + "product/deleteProductById";
public static final String ETE_REMOVE_MEASUREMENT_TIME = ETE_BASE_URL + "temprature/getOutletRemoveMeasurementTime";
public static final String ETE_TEMP_DETAIL_BY_DATE = ETE_BASE_URL + "temprature/getTempDetailByDate";
public static final String ETE_EXPORT_TEMPERATURE = ETE_BASE_URL + "temprature/ExporTempratureToExcel";
public static final String ETE_TEMP_PRODUCT_LIST = ETE_BASE_URL + "temprature/getTempProductList";
public static final String ETE_ADD_STORAGE_AREA_TEMP = ETE_BASE_URL + "restaurent/add_storage_area";
public static final String ETE_GET_STORAGE_AREA_BYID = ETE_BASE_URL + "restaurent/getStorageDetailById/";
public static final String ETE_DOWNLOAD_TEMP_LOG_HISTORY = ETE_BASE_URL + "temprature/ExporTempratureToExcel";
public static final String ETE_ADD_PARTNER = ETE_BASE_URL + "restaurent/add_restaurent";
public static final String ETE_DELETE_PARTNER = ETE_BASE_URL + "restaurent/deleteRestaurentByid";
public static final String ETE_OUTLETS_LIST = ETE_BASE_URL + "restaurent/getAlloutlets/";
public static final String ETE_ADD_OUTLET = ETE_BASE_URL + "restaurent/add_restaurent";
public static final String ETE_DELETE_USER = ETE_BASE_URL + "user/deleteUserById/";
public static final String ETE_CREATE_PRODUCT_CAT = ETE_BASE_URL + "product/addProductCategory";
public static final String ETE_DELETE_PRODUCT_CATEGORY = ETE_BASE_URL + "product/deleteCategory";
public static final String ETE_GET_PRODUCT_BY_CAT_ID = ETE_BASE_URL + "product/getProductByCatId";
public static final String ETE_GET_LABLE_OPTION_ID = ETE_BASE_URL + "label/getLabelOption";
public static final String ETE_SAVE_LABLE_PRODUCT = ETE_BASE_URL + "product/saveLabelProducts";
public static final String ETE_PRODUCT_CAT_LIST = ETE_BASE_URL + "product/getAllcategoryList";
public static final String ETE_GRAB_AND_GO_PRODUCT_LIST = ETE_BASE_URL + "product/getLabelProductList";
public static final String ETE_CUSTOM_LIST = ETE_BASE_URL + "labelcategory/getAllCustomLabelByOutlet";
public static final String ETE_ADD_USE_FIRST_LABEL = ETE_BASE_URL + "product/saveUseFirst";
public static final String ETE_GET_USE_FIRST_PRODUCT_DETAILS = ETE_BASE_URL + "product/getUseFirstProductByid/";
public static final String ETE_GET_ALL_PRODUCT_DETAILS = ETE_BASE_URL + "product/getAllProductDetails";
public static final String ETE_DELTE_MULTI_PRODUCT = ETE_BASE_URL + "product/deleteProductById";
public static final String ETE_ADD_UPDATE_GRAB_AND_GO_PROD_LABEL = ETE_BASE_URL + "product/saveGrabGoProduct";
public static final String ETE_GET_LABEL_OPTION = ETE_BASE_URL + "label/get-product-label";
public static final String ETE_ADD_UPDATE_LABEL_OPTION = ETE_BASE_URL + "label/addUpdateLabelOption";
public static final String ETE_GET_TEMP_LOG = ETE_BASE_URL + "temprature/getTempLog";
public static final String ETE_GET_CUSTOM_DETAIL_BY_ID = ETE_BASE_URL + "labelcategory/getCustomLabelByid/";
public static final String ETE_DELETE_CUSTOM_LABEL_ID = ETE_BASE_URL + "labelcategory/deleteCustomeLabel/";
public static final String ETE_ADD_EDIT_CUSTOM_LABLE = ETE_BASE_URL + "labelcategory/addLabelCategory";
public static final String ETE_CUSTOM_LABEL_LIST = ETE_BASE_URL + "labelcategory/getAllCustomLabelByOutlet";
public static final String ETE_NEED_HELP = ETE_BASE_URL + "setting/need_help";
public static final String ETE_PRODUCT_SAVE = ETE_BASE_URL + "product/save_product";
public static final String ETE_PRODUCT_ALL_CAT = ETE_BASE_URL + "product/getAllcategoryList";
public static final String ETE_DELETE_CAT = ETE_BASE_URL + "product/deleteCategory";
public static final String ETE_SAVE_NOTIFICATION_SETTINGS = ETE_BASE_URL + "setting/save_settings";
public static final String ETE_GET_ALL_NOTIFICATION_LIST = ETE_BASE_URL + "notification/showAllUserNotifications/";
public static final String ETE_SETTINGS_ABOUT_US = ETE_BASE_URL + "setting/about_us";
public static final String ETE_GET_GO_GRAB_PRODUCT_DETAILS = ETE_BASE_URL + "product/getGrabandGoProById";
public static final String ETE_USE_FIRST_PRODUCT_BY_ID = ETE_BASE_URL + "product/getUseFirstProductByid/";
public static final String ETE_CUSTOM_PRODUCT_BY_ID = ETE_BASE_URL + "labelcategory/getCustomLabelByid/";
public static final String ETE_GET_ALL_PRODUCT = ETE_BASE_URL + "product/getProductList";
public static final String ETE_TAKE_TEMP = ETE_BASE_URL + "temprature/takeTemp";
public static final String ETE_DELETE_PREP_PRODUCT = ETE_BASE_URL + "product/deletePrepProductbyId";
public static final String ETE_GET_PREP_PRODUCT = ETE_BASE_URL + "product/getPrepProductByid";
public static final String ETE_SEEN_NOTIFITION = ETE_BASE_URL + "notification/seenNotifications";
public static final String ETE_PARTNER_ACTIVE_STATUS = ETE_BASE_URL + "restaurent/activeDeactivePartner";
public static final String UPLOAD_URL = ETE_BASE_URL + "product/ImportExcelProduct";
public static final String FORGOT_PASSWORD_API = ETE_BASE_URL + "user/forgot_password";
}