X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.js;h=7667738004b954911316a2a7a69793d3038fea6b;hb=b2acff85739c6e7002d7c469fd012eb165237d89;hp=38e4b221e2f9fd974ac000454115beb34939854e;hpb=0a60c33c4f6592f6223136704fa4513b68603f2d;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.js b/src/utils/Constants.js index 38e4b221..76677380 100644 --- a/src/utils/Constants.js +++ b/src/utils/Constants.js @@ -1,4 +1,4 @@ -class Constants { +export default class Constants { static REST_RESPONSE_SUCCESS = {status: 'Success'}; static CONN_STATUS_AVAILABLE = 'Available'; @@ -139,7 +139,6 @@ class Constants { static STATUS_NOTIFICATION_TIMEOUT = 500; static START_TRANSACTION_TIMEOUT = 500; - static CHARGING_STATION_DEFAULT_RESET_TIME = 60000 // ms; + static CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // ms + static CHARGING_STATION_ATG_WAIT_TIME = 2000; // ms } - -module.exports = Constants;