SECCConfig.properties 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. ###############################################################################
  2. # Copyright (c) 2016 Dr.-Ing. Marc Mültin.
  3. # All rights reserved. This program and the accompanying materials
  4. # are made available under the terms of the Eclipse Public License v1.0
  5. # which accompanies this distribution, and is available at
  6. # http://www.eclipse.org/legal/epl-v10.html
  7. #
  8. # Contributors:
  9. # Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation
  10. ###############################################################################
  11. # ==============================================================================
  12. # Configuration properties for a unique electric vehicle supply equipment (EVSE)
  13. # ==============================================================================
  14. # Network interface
  15. #------------------
  16. #
  17. # The network interface name like en3 or eth1 of the network interface on which to communicate with the EVCC via a
  18. # link-local IPv6 address
  19. NetworkInterface = en0
  20. # Supported energy transfer modes
  21. # -------------------------------
  22. #
  23. # Refer to table 63 "Semantics for EnergyTransferModeType"
  24. # Select one value or a comma-separated list of the following values:
  25. # - AC_single_phase_core
  26. # - AC_three_phase_core
  27. # - DC_core
  28. # - DC_extended
  29. # - DC_combo_core
  30. # - DC_unique
  31. SupportedEnergyTransferModes = AC_three_phase_core, AC_single_phase_core, DC_core, DC_extended, DC_combo_core
  32. # Is charging a free service?
  33. #----------------------------
  34. #
  35. # Possible values:
  36. # - true
  37. # - false
  38. ChargingForFree = false
  39. # PaymentOptions
  40. # --------------
  41. #
  42. # Select from the following values:
  43. # - Contract
  44. # - ExternalPayment
  45. # The supported values must be separated by the comma delimiter (","). It does not matter
  46. # if you add white spaces between the values or not.
  47. SupportedPaymentOptions = Contract, ExternalPayment
  48. # Is the SECC located in a private environment?
  49. #---------------------------------------------
  50. #In a private environment, TLS mechanisms work a bit differently than in a public environment.
  51. # Possible values:
  52. # - true
  53. # - false
  54. PrivateEnvironment = false
  55. # XML representation of messages
  56. #-------------------------------
  57. #
  58. # Possible values:
  59. # - true
  60. # - false
  61. # If this value is set to 'true', the EXICodec will print each message's XML representation (for debugging purposes)
  62. # If no correct value is provided here, 'false' will be chosen
  63. XMLRepresentationOfMessages = true
  64. # Extended logging of signature verification
  65. #-------------------------------------------
  66. #
  67. # Possible values:
  68. # - true
  69. # - false
  70. # If this value is set to 'true', extended logging will be printed upon verification of signatures (for debugging purposes)
  71. # If no correct value is provided here, 'false' will be chosen
  72. SignatureVerificationLog = true