X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.js;h=ba2412c2a08d87f723c8093c1a1b960fcd9eb38e;hb=546dec0fafb76402766ba55c89866b9f8b329895;hp=b5b55cc330638e54e333184c2315da4920e60aa8;hpb=72766a82a1372713a48d9e7143a0348d7fd56a29;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.js b/src/utils/Constants.js index b5b55cc3..ba2412c2 100644 --- a/src/utils/Constants.js +++ b/src/utils/Constants.js @@ -103,6 +103,7 @@ class Constants { static OCPP_RESPONSE_ACCEPTED = {status: 'Accepted'}; static OCPP_RESPONSE_REJECTED = {status: 'Rejected'}; + static OCPP_RESPONSE_REBOOT_REQUIRED = {status: 'RebootRequired'}; static OCPP_SOCKET_TIMEOUT = 60000; // 60 sec static OCPP_JSON_CALL_MESSAGE = 2; // Client-to-Server static OCPP_JSON_CALL_RESULT_MESSAGE = 3; // Server-to-Client @@ -137,6 +138,9 @@ class Constants { static STATUS_NOTIFICATION_TIMEOUT = 500; static START_TRANSACTION_TIMEOUT = 500; + + static CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // ms + static CHARGING_STATION_ATG_WAIT_TIME = 2000; // ms } module.exports = Constants;