1
0

EVCCConfig.properties 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 (EV)
  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 SECC via a
  18. # link-local IPv6 address
  19. NetworkInterface = en0
  20. # Security
  21. #---------
  22. #
  23. # Possible values:
  24. # - true
  25. # - false
  26. # If this value is set to 'false', TCP will be used on transport layer
  27. # If no correct value is provided here, 'false' will be chosen
  28. TLSSecurity = true
  29. # Contract certificate update time span
  30. #-------------------------------------
  31. #
  32. # Integer value defining the time span in days which precedes the expiration of a contract certificate
  33. # and during which an update of the contract certificate needs to be performed
  34. ContractCertificateUpdateTimespan = 14
  35. # SessionID
  36. #----------
  37. #
  38. # If this value is unequal to zero, then it represents a previously
  39. # paused V2G communication session
  40. SessionID = 0
  41. # Selected payment option
  42. #------------------------
  43. #
  44. # This (single!) value needs to be provided from a previous charging session if charging has been paused.
  45. # Possible values are:
  46. # - Contract
  47. # - ExternalPayment
  48. RequestedPaymentOption =
  49. # Requested energy transfer mode
  50. #--------------------------------
  51. #
  52. # This (single!) value needs to be provided from a previous charging session if charging has been paused.
  53. # Possible values are:
  54. # - AC_single_phase_core
  55. # - AC_three_phase_core
  56. # - DC_core
  57. # - DC_extended
  58. # - DC_combo_core
  59. # - DC_unique
  60. RequestedEnergyTransferMode = AC_three_phase_core
  61. # XML representation of messages
  62. #-------------------------------
  63. #
  64. # Possible values:
  65. # - true
  66. # - false
  67. # If this value is set to 'true', the EXICodec will print each message's XML representation (for debugging purposes)
  68. # If no correct value is provided here, 'false' will be chosen
  69. XMLRepresentationOfMessages = true
  70. # Extended logging of signature verification
  71. #-------------------------------------------
  72. #
  73. # Possible values:
  74. # - true
  75. # - false
  76. # If this value is set to 'true', extended logging will be printed upon verification of signatures (for debugging purposes)
  77. # If no correct value is provided here, 'false' will be chosen
  78. SignatureVerificationLog = true