1
0

SECCConfig.properties 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 supply equipment (EVSE)
  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 EV
  19. NetworkInterface = lo0
  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
  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