EVCCConfig.properties 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ###############################################################################
  2. # Copyright (c) 2015 Marc Mültin (Chargepartner GmbH).
  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 (Chargepartner GmbH) - 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 (see also scope id from IPv6-address%scope_id) given as a String on which
  18. # to communicate with the EVSE
  19. NetworkInterface = lo0
  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 = AC_three_phase_core