SECCConfig.properties 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. ###############################################################################
  2. # The MIT License (MIT)
  3. #
  4. # Copyright (c) 2015-207 V2G Clarity (Dr.-Ing. Marc Mültin)
  5. #
  6. # Permission is hereby granted, free of charge, to any person obtaining a copy
  7. # of this software and associated documentation files (the "Software"), to deal
  8. # in the Software without restriction, including without limitation the rights
  9. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. # copies of the Software, and to permit persons to whom the Software is
  11. # furnished to do so, subject to the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included in
  14. # all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. # THE SOFTWARE.
  23. ###############################################################################
  24. # ==============================================================================
  25. # Configuration properties for a unique electric vehicle supply equipment (EVSE)
  26. # ==============================================================================
  27. # Network interface
  28. #------------------
  29. #
  30. # The network interface name like en3 or eth1 of the network interface on which to communicate with the EVCC via a
  31. # link-local IPv6 address
  32. NetworkInterface = en0
  33. # Supported energy transfer modes
  34. # -------------------------------
  35. #
  36. # Refer to table 63 "Semantics for EnergyTransferModeType"
  37. # Select one value or a comma-separated list of the following values:
  38. # - AC_single_phase_core
  39. # - AC_three_phase_core
  40. # - DC_core
  41. # - DC_extended
  42. # - DC_combo_core
  43. # - DC_unique
  44. SupportedEnergyTransferModes = AC_three_phase_core, AC_single_phase_core, DC_core, DC_extended, DC_combo_core
  45. # Is charging a free service?
  46. #----------------------------
  47. #
  48. # Possible values:
  49. # - true
  50. # - false
  51. ChargingForFree = false
  52. # PaymentOptions
  53. # --------------
  54. #
  55. # Select from the following values:
  56. # - Contract
  57. # - ExternalPayment
  58. # The supported values must be separated by the comma delimiter (","). It does not matter
  59. # if you add white spaces between the values or not.
  60. SupportedPaymentOptions = Contract, ExternalPayment
  61. # Is the SECC located in a private environment?
  62. #---------------------------------------------
  63. #In a private environment, TLS mechanisms work a bit differently than in a public environment.
  64. # Possible values:
  65. # - true
  66. # - false
  67. PrivateEnvironment = false
  68. # XML representation of messages
  69. #-------------------------------
  70. #
  71. # Possible values:
  72. # - true
  73. # - false
  74. # If this value is set to 'true', the EXICodec will print each message's XML representation (for debugging purposes)
  75. # If no correct value is provided here, 'false' will be chosen
  76. XMLRepresentationOfMessages = true
  77. # Extended logging of signature verification
  78. #-------------------------------------------
  79. #
  80. # Possible values:
  81. # - true
  82. # - false
  83. # If this value is set to 'true', extended logging will be printed upon verification of signatures (for debugging purposes)
  84. # If no correct value is provided here, 'false' will be chosen
  85. SignatureVerificationLog = true