SECCConfig.properties 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. network.interface = 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. energy.transfermodes.supported = 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. charging.free = 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. authentication.modes.supported = 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. environment.private = 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. exi.messages.showxml = true
  77. # Hexadecimal and Base64 representation of messages
  78. #--------------------------------------------------
  79. #
  80. # Possible values:
  81. # - true
  82. # - false
  83. # If this value is set to 'true', the EXICodec will print each message's hexadecimal and Base64 representation (for debugging purposes)
  84. # If no correct value is provided here, 'false' will be chosen
  85. exi.messages.showhex = true
  86. # Extended logging of signature verification
  87. #-------------------------------------------
  88. #
  89. # Possible values:
  90. # - true
  91. # - false
  92. # If this value is set to 'true', extended logging will be printed upon verification of signatures (for debugging purposes)
  93. # If no correct value is provided here, 'false' will be chosen
  94. signature.verification.showlog = true
  95. # EXI codec
  96. #--------------------------------
  97. #
  98. # This (single!) value tells the program which EXI codec to use to en-/decode EXI messages
  99. # Possible values are:
  100. # - exificient
  101. # - open_exi
  102. # If no correct value is provided here, 'exificient' will be used
  103. exi.codec = exificient