| Line 49... |
Line 49... |
| 49 |
|
49 |
|
| 50 |
private static final Logger logger = LoggerFactory.getLogger(Utils.class);
|
50 |
private static final Logger logger = LoggerFactory.getLogger(Utils.class);
|
| 51 |
public static final String EXPORT_ENTITIES_PATH = getExportPath();
|
51 |
public static final String EXPORT_ENTITIES_PATH = getExportPath();
|
| 52 |
public static final String PRODUCT_PROPERTIES_SNIPPET = "ProductPropertiesSnippet.html";
|
52 |
public static final String PRODUCT_PROPERTIES_SNIPPET = "ProductPropertiesSnippet.html";
|
| 53 |
public static final String DOCUMENT_STORE = "/profitmandi/documents/";
|
53 |
public static final String DOCUMENT_STORE = "/profitmandi/documents/";
|
| 54 |
private static final Map<Integer, String> helpMap = new HashMap(6);
|
54 |
private static final Map<Integer, String> helpMap = new HashMap<>(6);
|
| 55 |
private static final Map<Integer, String> dthIdAliasMap = new HashMap(7);
|
55 |
private static final Map<Integer, String> dthIdAliasMap = new HashMap<>(7);
|
| 56 |
private static Map<Long, List<RechargePlan>> operatorPlanMap = new HashMap(20);
|
56 |
private static Map<Long, List<RechargePlan>> operatorPlanMap = new HashMap<>(20);
|
| 57 |
private static Map<Long, String> mobileProvidersMap;
|
57 |
private static Map<Long, String> mobileProvidersMap;
|
| 58 |
private static Map<Long, String> dthProvidersMap;
|
58 |
private static Map<Long, String> dthProvidersMap;
|
| 59 |
//private static final String SMS_GATEWAY = "http://103.15.179.45:8085/SMSGateway/sendingSMS";
|
59 |
//private static final String SMS_GATEWAY = "http://103.15.179.45:8085/SMSGateway/sendingSMS";
|
| 60 |
private static final String SMS_GATEWAY = "http://103.15.179.45:8085/MessagingGateway/SendTransSMS";
|
60 |
private static final String SMS_GATEWAY = "http://103.15.179.45:8085/MessagingGateway/SendTransSMS";
|
| 61 |
private static Map<Long, String> allProviders;
|
61 |
private static Map<Long, String> allProviders;
|
| 62 |
public static Map<RechargeOrderStatus, String> rechargeStatusMap = new HashMap();
|
62 |
public static Map<RechargeOrderStatus, String> rechargeStatusMap = new HashMap<>();
|
| 63 |
|
63 |
|
| 64 |
static {
|
64 |
static {
|
| 65 |
helpMap.put(Integer.valueOf(1), "Your VC number starts with 0 and is 11 digits long.");
|
65 |
helpMap.put(Integer.valueOf(1), "Your VC number starts with 0 and is 11 digits long.");
|
| 66 |
helpMap.put(Integer.valueOf(2), "Smart card number starts with 2 and is 12 digits long.");
|
66 |
helpMap.put(Integer.valueOf(2), "Smart card number starts with 2 and is 12 digits long.");
|
| 67 |
helpMap.put(Integer.valueOf(3), "Smart card number starts with 4 and is 11 digits long.");
|
67 |
helpMap.put(Integer.valueOf(3), "Smart card number starts with 4 and is 11 digits long.");
|