EVCCConfig.properties 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 timespan
  30. #-------------------------------------
  31. #
  32. # Integer value defining the timespan 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 = DC_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 = false