EVCCConfig.properties 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 (EV)
  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 SECC via a
  31. # link-local IPv6 address
  32. network.interface = en0
  33. # Security
  34. #---------
  35. #
  36. # Possible values:
  37. # - true
  38. # - false
  39. # If this value is set to 'false', TCP will be used on transport layer
  40. # If no correct value is provided here, 'false' will be chosen
  41. tls = false
  42. # Contract certificate update time span
  43. #-------------------------------------
  44. #
  45. # Integer value defining the time span in days which precedes the expiration of a contract certificate
  46. # and during which an update of the contract certificate needs to be performed
  47. contract.certificate.update.timespan = 14
  48. # SessionID
  49. #----------
  50. #
  51. # If this value is unequal to zero, then it represents a previously
  52. # paused V2G communication session
  53. session.id = 0
  54. # Selected payment option
  55. #------------------------
  56. #
  57. # This (single!) value needs to be provided from a previous charging session if charging has been paused.
  58. # Possible values are:
  59. # - Contract
  60. # - ExternalPayment
  61. authentication.mode =
  62. # Requested energy transfer mode
  63. #--------------------------------
  64. #
  65. # This (single!) value needs to be provided from a previous charging session if charging has been paused.
  66. # Possible values are:
  67. # - AC_single_phase_core
  68. # - AC_three_phase_core
  69. # - DC_core
  70. # - DC_extended
  71. # - DC_combo_core
  72. # - DC_unique
  73. energy.transfermode.requested = AC_three_phase_core
  74. # XML representation of messages
  75. #-------------------------------
  76. #
  77. # Possible values:
  78. # - true
  79. # - false
  80. # If this value is set to 'true', the EXICodec will print each message's XML representation (for debugging purposes)
  81. # If no correct value is provided here, 'false' will be chosen
  82. exi.messages.showxml = true
  83. # Hexadecimal and Base64 representation of messages
  84. #--------------------------------------------------
  85. #
  86. # Possible values:
  87. # - true
  88. # - false
  89. # If this value is set to 'true', the EXICodec will print each message's hexadecimal and Base64 representation (for debugging purposes)
  90. # If no correct value is provided here, 'false' will be chosen
  91. exi.messages.showhex = true
  92. # Extended logging of signature verification
  93. #-------------------------------------------
  94. #
  95. # Possible values:
  96. # - true
  97. # - false
  98. # If this value is set to 'true', extended logging will be printed upon verification of signatures (for debugging purposes)
  99. # If no correct value is provided here, 'false' will be chosen
  100. signature.verification.showlog = true
  101. # EXI codec
  102. #--------------------------------
  103. #
  104. # This (single!) value tells the program which EXI codec to use to en-/decode EXI messages
  105. # Possible values are:
  106. # - exificient
  107. # - open_exi
  108. # If no correct value is provided here, 'exificient' will be used
  109. exi.codec = open_exi