| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- ###############################################################################
- # Copyright (c) 2016 Dr.-Ing. Marc Mültin.
- # All rights reserved. This program and the accompanying materials
- # are made available under the terms of the Eclipse Public License v1.0
- # which accompanies this distribution, and is available at
- # http://www.eclipse.org/legal/epl-v10.html
- #
- # Contributors:
- # Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation
- ###############################################################################
- # ===========================================================
- # Configuration properties for a unique electric vehicle (EV)
- # ===========================================================
- # Network interface
- #------------------
- #
- # The network interface name like en3 or eth1 of the network interface on which to communicate with the SECC via a
- # link-local IPv6 address
- NetworkInterface = en0
- # Security
- #---------
- #
- # Possible values:
- # - true
- # - false
- # If this value is set to 'false', TCP will be used on transport layer
- # If no correct value is provided here, 'false' will be chosen
- TLSSecurity = true
- # Contract certificate update timespan
- #-------------------------------------
- #
- # Integer value defining the timespan in days which precedes the expiration of a contract certificate
- # and during which an update of the contract certificate needs to be performed
- ContractCertificateUpdateTimespan = 14
- # SessionID
- #----------
- #
- # If this value is unequal to zero, then it represents a previously
- # paused V2G communication session
- SessionID = 0
- # Selected payment option
- #------------------------
- #
- # This (single!) value needs to be provided from a previous charging session if charging has been paused.
- # Possible values are:
- # - Contract
- # - ExternalPayment
- RequestedPaymentOption =
- # Requested energy transfer mode
- #--------------------------------
- #
- # This (single!) value needs to be provided from a previous charging session if charging has been paused.
- # Possible values are:
- # - AC_single_phase_core
- # - AC_three_phase_core
- # - DC_core
- # - DC_extended
- # - DC_combo_core
- # - DC_unique
- RequestedEnergyTransferMode =
- # XML representation of messages
- #-------------------------------
- #
- # Possible values:
- # - true
- # - false
- # If this value is set to 'true', the EXICodec will print each message's XML representation (for debugging purposes)
- # If no correct value is provided here, 'false' will be chosen
- XMLRepresentationOfMessages = false
|