diff --git a/RISE-V2G-Certificates/generateCertificates.sh b/RISE-V2G-Certificates/generateCertificates.sh index e05f359..5e7486e 100644 --- a/RISE-V2G-Certificates/generateCertificates.sh +++ b/RISE-V2G-Certificates/generateCertificates.sh @@ -1,3 +1,13 @@ +#******************************************************************************* +# 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 +#******************************************************************************* # This shell script can be used to create all necessary certificates and keystores needed in order to # - successfully perform a TLS handshake between the EVCC (TLSClient) and the SECC (TLSServer) and # - install/update a contract certificate in the EVCC. diff --git a/RISE-V2G-EVCC/EVCCConfig.properties b/RISE-V2G-EVCC/EVCCConfig.properties index 07c16de..82d957d 100644 --- a/RISE-V2G-EVCC/EVCCConfig.properties +++ b/RISE-V2G-EVCC/EVCCConfig.properties @@ -1,12 +1,12 @@ ############################################################################### -# Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). +# 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 (Chargepartner GmbH) - initial API and implementation and initial documentation +# Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation ############################################################################### # =========================================================== # Configuration properties for a unique electric vehicle (EV) diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/DummyEVController.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/DummyEVController.java index ad06753..7a838b5 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/DummyEVController.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/DummyEVController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.evController; @@ -48,7 +48,9 @@ public class DummyEVController implements IACEVController, IDCEVController { @Override public PaymentOptionType getPaymentOption(PaymentOptionListType paymentOptionsOffered) { - if (paymentOptionsOffered.getPaymentOption().contains(PaymentOptionType.CONTRACT)) + // Contract payment option may only be chosen if offered by SECC AND if communication is secured by TLS + if (paymentOptionsOffered.getPaymentOption().contains(PaymentOptionType.CONTRACT) && + getCommSessionContext().isSecureCommunication()) return PaymentOptionType.CONTRACT; else return PaymentOptionType.EXTERNAL_PAYMENT; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IACEVController.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IACEVController.java index ba03d99..4cad36a 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IACEVController.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IACEVController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.evController; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IDCEVController.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IDCEVController.java index 34c015b..760c3a8 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IDCEVController.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IDCEVController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.evController; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IEVController.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IEVController.java index b46397e..5305075 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IEVController.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/evController/IEVController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.evController; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/main/StartEVCC.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/main/StartEVCC.java index 3362df0..6138dba 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/main/StartEVCC.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/main/StartEVCC.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.main; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionEVCC.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionEVCC.java index f943feb..98b29bd 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionEVCC.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionEVCC.java @@ -1,16 +1,15 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.session; -import java.security.cert.X509Certificate; import java.util.ArrayList; import java.util.List; import java.util.Observable; @@ -49,7 +48,6 @@ import org.eclipse.risev2g.shared.messageHandling.SendMessage; import org.eclipse.risev2g.shared.messageHandling.TerminateSession; import org.eclipse.risev2g.shared.misc.V2GCommunicationSession; import org.eclipse.risev2g.shared.misc.V2GTPMessage; -import org.eclipse.risev2g.shared.utils.SecurityUtils; import org.eclipse.risev2g.shared.v2gMessages.appProtocol.AppProtocolType; import org.eclipse.risev2g.shared.v2gMessages.appProtocol.SupportedAppProtocolRes; import org.eclipse.risev2g.shared.v2gMessages.msgDef.ChargeParameterDiscoveryReqType; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionHandlerEVCC.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionHandlerEVCC.java index bb8b979..50ce5a6 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionHandlerEVCC.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/session/V2GCommunicationSessionHandlerEVCC.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.session; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/ClientState.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/ClientState.java index 7494394..9c1a244 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/ClientState.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/ClientState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForAuthorizationRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForAuthorizationRes.java index 6df1e98..589ef80 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForAuthorizationRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForAuthorizationRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCableCheckRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCableCheckRes.java index 62da5a1..99f3775 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCableCheckRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCableCheckRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateInstallationRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateInstallationRes.java index da12ba9..0033db3 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateInstallationRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateInstallationRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateUpdateRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateUpdateRes.java index a4d2813..91d42b2 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateUpdateRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCertificateUpdateRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargeParameterDiscoveryRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargeParameterDiscoveryRes.java index e8f4dbd..653b410 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargeParameterDiscoveryRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargeParameterDiscoveryRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; @@ -77,9 +77,13 @@ public class WaitForChargeParameterDiscoveryRes extends ClientState { SAScheduleListType saSchedules = (SAScheduleListType) chargeParameterDiscoveryRes.getSASchedules().getValue(); - // Verify each sales tariff with the mobility operator sub 2 certificate - if (saSchedules != null && !verifySalesTariffs(saSchedules, v2gMessageRes.getHeader().getSignature())) - return new TerminateSession("Verification of sales tariffs failed"); + // If TLS is used, verify each sales tariff (if present) with the mobility operator sub 2 certificate + if (getCommSessionContext().isSecureCommunication() && saSchedules != null) { + if (!verifySalesTariffs(saSchedules, v2gMessageRes.getHeader().getSignature())) + getLogger().warn("Verification of sales tariffs failed. They are therefore ignored in the " + + "charge process."); + deleteUnverifiedSalesTariffs(saSchedules); + } // Save the list of SASchedules (saves the time of reception as well) getCommSessionContext().setSaSchedules(saSchedules); @@ -132,7 +136,7 @@ public class WaitForChargeParameterDiscoveryRes extends ClientState { X509Certificate moSub2Certificate = SecurityUtils.getMOSub2Certificate( GlobalValues.EVCC_KEYSTORE_FILEPATH.toString()); if (moSub2Certificate == null) { - getLogger().error("No MOSub2Certificate found"); + getLogger().warn("No MOSub2Certificate found."); return false; } else { ECPublicKey ecPublicKey = (ECPublicKey) moSub2Certificate.getPublicKey(); @@ -144,4 +148,20 @@ public class WaitForChargeParameterDiscoveryRes extends ClientState { return true; } + + /** + * If the signature of one ore more sales tariffs cannot be verified, then the sales tariffs should be ignored + * rather than terminating the charge process. The charge process can then proceed based solely on the + * PMaxSchedule + * + * @param saSchedules The schedule(s) from the secondary actor including PMaxSchedule and potential SalesTariff + * elements. + */ + private void deleteUnverifiedSalesTariffs(SAScheduleListType saSchedules) { + List saScheduleTuples = saSchedules.getSAScheduleTuple(); + + for (SAScheduleTupleType saScheduleTuple : saScheduleTuples) { + saScheduleTuple.setSalesTariff(null); + } + } } diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargingStatusRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargingStatusRes.java index fff787c..cc813b7 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargingStatusRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForChargingStatusRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; @@ -35,8 +35,14 @@ public class WaitForChargingStatusRes extends ClientState { ChargingStatusResType chargingStatusRes = (ChargingStatusResType) v2gMessageRes.getBody().getBodyElement().getValue(); - // ReceiptRequired has higher priority than a possible EVSENotification=Renegotiate - if (chargingStatusRes.isReceiptRequired()) { + /* + * ReceiptRequired has higher priority than a possible EVSENotification=Renegotiate + * + * Check if communication is secured with TLS before reacting upon a possible request from the SECC to send + * a MeteringReceiptRequest. If no TLS is used, a MeteringReceiptRequest may not be sent because + * a signature cannot be applied without private key of the contract certificate. + */ + if (chargingStatusRes.isReceiptRequired() && getCommSessionContext().isSecureCommunication()) { MeteringReceiptReqType meteringReceiptReq = new MeteringReceiptReqType(); meteringReceiptReq.setId("meteringReceiptReq"); meteringReceiptReq.setMeterInfo(chargingStatusRes.getMeterInfo()); diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCurrentDemandRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCurrentDemandRes.java index c162f92..dd6c518 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCurrentDemandRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForCurrentDemandRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForMeteringReceiptRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForMeteringReceiptRes.java index 9ff0873..358d434 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForMeteringReceiptRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForMeteringReceiptRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentDetailsRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentDetailsRes.java index 76438e5..2bc42cb 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentDetailsRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentDetailsRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentServiceSelectionRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentServiceSelectionRes.java index dd5b2f0..e74097a 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentServiceSelectionRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPaymentServiceSelectionRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPowerDeliveryRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPowerDeliveryRes.java index 7d594d1..65db962 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPowerDeliveryRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPowerDeliveryRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPreChargeRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPreChargeRes.java index 89e72fa..56a12d9 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPreChargeRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForPreChargeRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDetailRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDetailRes.java index c9ee12b..35fc2ad 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDetailRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDetailRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDiscoveryRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDiscoveryRes.java index 7f62adb..a43b5f8 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDiscoveryRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForServiceDiscoveryRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionSetupRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionSetupRes.java index ca69e65..6368a16 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionSetupRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionSetupRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionStopRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionStopRes.java index 712667e..b5ffc91 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionStopRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSessionStopRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSupportedAppProtocolRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSupportedAppProtocolRes.java index 1f2a684..e139261 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSupportedAppProtocolRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForSupportedAppProtocolRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForWeldingDetectionRes.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForWeldingDetectionRes.java index 015b7f7..ef6fa2a 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForWeldingDetectionRes.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/states/WaitForWeldingDetectionRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.states; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/StatefulTransportLayerClient.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/StatefulTransportLayerClient.java index 90bab0e..0b3ca99 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/StatefulTransportLayerClient.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/StatefulTransportLayerClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.transportLayer; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TCPClient.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TCPClient.java index f9d9a34..be8d581 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TCPClient.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TCPClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.transportLayer; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TLSClient.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TLSClient.java index 5b33f42..0e38edc 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TLSClient.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/TLSClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.transportLayer; diff --git a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/UDPClient.java b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/UDPClient.java index 53f17e0..bf552be 100644 --- a/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/UDPClient.java +++ b/RISE-V2G-EVCC/src/main/java/org/eclipse/risev2g/evcc/transportLayer/UDPClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.evcc.transportLayer; diff --git a/RISE-V2G-SECC/SECCConfig.properties b/RISE-V2G-SECC/SECCConfig.properties index a1813d8..097b65f 100644 --- a/RISE-V2G-SECC/SECCConfig.properties +++ b/RISE-V2G-SECC/SECCConfig.properties @@ -1,12 +1,12 @@ ############################################################################### -# Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). +# 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 (Chargepartner GmbH) - initial API and implementation and initial documentation +# Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation ############################################################################### # ============================================================================== # Configuration properties for a unique electric vehicle supply equipment (EVSE) diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/DummyBackendInterface.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/DummyBackendInterface.java index 339cf52..28bf50f 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/DummyBackendInterface.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/DummyBackendInterface.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.backend; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/IBackendInterface.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/IBackendInterface.java index 346e287..d262d8b 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/IBackendInterface.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/backend/IBackendInterface.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.backend; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyACEVSEController.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyACEVSEController.java index ccc55bd..4d375e8 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyACEVSEController.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyACEVSEController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.evseController; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyDCEVSEController.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyDCEVSEController.java index ff05332..444b577 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyDCEVSEController.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/DummyDCEVSEController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.evseController; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IACEVSEController.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IACEVSEController.java index 8342014..77f7a32 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IACEVSEController.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IACEVSEController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.evseController; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IDCEVSEController.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IDCEVSEController.java index 627a5c7..8b740e3 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IDCEVSEController.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IDCEVSEController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.evseController; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IEVSEController.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IEVSEController.java index f58725c..ccb439e 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IEVSEController.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/evseController/IEVSEController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.evseController; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/main/StartSECC.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/main/StartSECC.java index 488fec7..27eb791 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/main/StartSECC.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/main/StartSECC.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.main; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionHandlerSECC.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionHandlerSECC.java index 8f237ce..2328877 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionHandlerSECC.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionHandlerSECC.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.session; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionSECC.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionSECC.java index 48f6c86..c88184c 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionSECC.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/session/V2GCommunicationSessionSECC.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.session; @@ -60,6 +60,7 @@ import org.eclipse.risev2g.shared.v2gMessages.msgDef.EnergyTransferModeType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.MessageHeaderType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.MeterInfoType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.PMaxScheduleType; +import org.eclipse.risev2g.shared.v2gMessages.msgDef.PaymentOptionType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.ResponseCodeType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.SAScheduleListType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.ServiceType; @@ -84,6 +85,7 @@ public class V2GCommunicationSessionSECC extends V2GCommunicationSession impleme private byte[] genChallenge; private SAScheduleListType saSchedules; private EnergyTransferModeType requestedEnergyTransferMode; + private PaymentOptionType selectedPaymentOption; private CertificateChainType contractSignatureCertChain; private MeterInfoType sentMeterInfo; private boolean tlsConnection; @@ -458,4 +460,14 @@ public class V2GCommunicationSessionSECC extends V2GCommunicationSession impleme public void setTlsConnection(boolean tlsConnection) { this.tlsConnection = tlsConnection; } + + + public PaymentOptionType getSelectedPaymentOption() { + return selectedPaymentOption; + } + + + public void setSelectedPaymentOption(PaymentOptionType selectedPaymentOption) { + this.selectedPaymentOption = selectedPaymentOption; + } } diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ForkState.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ForkState.java index 7a8f95d..7485b12 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ForkState.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ForkState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ServerState.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ServerState.java index de34c5c..e906dfe 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ServerState.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/ServerState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForAuthorizationReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForAuthorizationReq.java index 3ccd8de..8f0452b 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForAuthorizationReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForAuthorizationReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCableCheckReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCableCheckReq.java index d4b9aee..5733919 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCableCheckReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCableCheckReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateInstallationReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateInstallationReq.java index 075eb6b..e57c02e 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateInstallationReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateInstallationReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateUpdateReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateUpdateReq.java index f786270..4f0e1b1 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateUpdateReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCertificateUpdateReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargeParameterDiscoveryReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargeParameterDiscoveryReq.java index 632d892..e50b192 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargeParameterDiscoveryReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargeParameterDiscoveryReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargingStatusReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargingStatusReq.java index 7564897..48ffb6e 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargingStatusReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForChargingStatusReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCurrentDemandReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCurrentDemandReq.java index 90f5840..170ea18 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCurrentDemandReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForCurrentDemandReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForMeteringReceiptReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForMeteringReceiptReq.java index 4b08ddc..02c0dbc 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForMeteringReceiptReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForMeteringReceiptReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentDetailsReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentDetailsReq.java index 932139a..18001e2 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentDetailsReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentDetailsReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentServiceSelectionReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentServiceSelectionReq.java index ac76dee..095811e 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentServiceSelectionReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPaymentServiceSelectionReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPowerDeliveryReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPowerDeliveryReq.java index 8f420da..117d31e 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPowerDeliveryReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPowerDeliveryReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPreChargeReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPreChargeReq.java index fc704ee..1394028 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPreChargeReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForPreChargeReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDetailReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDetailReq.java index 8d32dbc..7a48e87 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDetailReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDetailReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDiscoveryReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDiscoveryReq.java index 2edaf12..d81ad8d 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDiscoveryReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForServiceDiscoveryReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionSetupReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionSetupReq.java index 3385b81..a83c3a9 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionSetupReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionSetupReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionStopReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionStopReq.java index d8ccbae..b9e72b1 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionStopReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSessionStopReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSupportedAppProtocolReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSupportedAppProtocolReq.java index 0a06045..ae1e674 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSupportedAppProtocolReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForSupportedAppProtocolReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForWeldingDetectionReq.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForWeldingDetectionReq.java index 8334841..d8d98bc 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForWeldingDetectionReq.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/states/WaitForWeldingDetectionReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.states; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/ConnectionHandler.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/ConnectionHandler.java index ec7aa91..54250cc 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/ConnectionHandler.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/ConnectionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.transportLayer; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/StatefulTransportLayerServer.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/StatefulTransportLayerServer.java index 77213c3..a788ea7 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/StatefulTransportLayerServer.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/StatefulTransportLayerServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.transportLayer; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TCPServer.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TCPServer.java index 4d4d160..ae996a5 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TCPServer.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TCPServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.transportLayer; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TLSServer.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TLSServer.java index 0d35258..ae4818c 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TLSServer.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/TLSServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.transportLayer; diff --git a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/UDPServer.java b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/UDPServer.java index 733e07e..f75a1dc 100644 --- a/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/UDPServer.java +++ b/RISE-V2G-SECC/src/main/java/org/eclipse/risev2g/secc/transportLayer/UDPServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.secc.transportLayer; diff --git a/RISE-V2G-Shared/libs/exificient.jar b/RISE-V2G-Shared/libs/exificient.jar new file mode 100644 index 0000000..33a19bb Binary files /dev/null and b/RISE-V2G-Shared/libs/exificient.jar differ diff --git a/RISE-V2G-Shared/libs/xercesImpl.jar b/RISE-V2G-Shared/libs/xercesImpl.jar new file mode 100644 index 0000000..0aaa990 Binary files /dev/null and b/RISE-V2G-Shared/libs/xercesImpl.jar differ diff --git a/RISE-V2G-Shared/libs/xml-apis.jar b/RISE-V2G-Shared/libs/xml-apis.jar new file mode 100644 index 0000000..4673346 Binary files /dev/null and b/RISE-V2G-Shared/libs/xml-apis.jar differ diff --git a/RISE-V2G-Shared/pom.xml b/RISE-V2G-Shared/pom.xml index a805a1b..070d27c 100644 --- a/RISE-V2G-Shared/pom.xml +++ b/RISE-V2G-Shared/pom.xml @@ -21,6 +21,11 @@ + + com.siemens.ct.exi + exificient + 0.9.6 + xerces xercesImpl diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/CPStates.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/CPStates.java index bc3a31c..7fccc79 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/CPStates.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/CPStates.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.enumerations; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalTypes.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalTypes.java index a2f9441..d51f6d7 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalTypes.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalTypes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.enumerations; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalValues.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalValues.java index 178c0b1..b2d22c0 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalValues.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/GlobalValues.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.enumerations; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/MessageSets.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/MessageSets.java index 6b9e519..2a8a6b7 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/MessageSets.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/MessageSets.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.enumerations; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/V2GMessages.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/V2GMessages.java index 2041b3e..468c389 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/V2GMessages.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/enumerations/V2GMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.enumerations; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java index 3b8d9e8..2aa797b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXISchemaFactoryExceptionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.exiCodec; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXIficientCodec.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXIficientCodec.java index 069d945..e4c099b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXIficientCodec.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/EXIficientCodec.java @@ -1,192 +1,196 @@ package org.eclipse.risev2g.shared.exiCodec; /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ -//import java.io.ByteArrayInputStream; -//import java.io.ByteArrayOutputStream; -//import java.io.IOException; -//import java.io.InputStream; -//import java.io.OutputStream; -//import java.io.StringWriter; -//import javax.xml.transform.Transformer; -//import javax.xml.transform.TransformerConfigurationException; -//import javax.xml.transform.TransformerException; -//import javax.xml.transform.TransformerFactory; -//import javax.xml.transform.sax.SAXSource; -//import javax.xml.transform.stream.StreamResult; -//import org.eclipse.risev2g.shared.enumerations.GlobalValues; -//import org.xml.sax.InputSource; -//import org.xml.sax.SAXException; -//import org.xml.sax.XMLReader; -//import org.xml.sax.helpers.XMLReaderFactory; -//import com.siemens.ct.exi.EXIFactory; -//import com.siemens.ct.exi.GrammarFactory; -//import com.siemens.ct.exi.api.sax.EXIResult; -//import com.siemens.ct.exi.api.sax.EXISource; -//import com.siemens.ct.exi.exceptions.EXIException; -//import com.siemens.ct.exi.grammars.Grammars; -//import com.siemens.ct.exi.helpers.DefaultEXIFactory; -// -//public final class EXIficientCodec extends ExiCodec { -// // -- BEGIN: SINGLETON DEFINITION -- -// /* -// * Eager instantiation of the singleton, since a EXIficientCodec is always needed. -// * The JVM creates the unique instance when the class is loaded and before any thread tries to -// * access the instance variable -> thread safe. -// */ -// private static final EXIficientCodec instance = new EXIficientCodec(); -// -// private EXIFactory exiFactory; -// private GrammarFactory grammarFactory; -// private Grammars grammarAppProtocol; -// private Grammars grammarMsgDef; -// private OutputStream encodeOS; -// -// private EXIficientCodec() { -// super(); -// -// setExiFactory(DefaultEXIFactory.newInstance()); -// getExiFactory().setValuePartitionCapacity(0); -// setGrammarFactory(GrammarFactory.newInstance()); -// -// /* -// * The supportedAppProtocolReq and -Res message have a different schema than the rest -// * of the V2G application layer messages -// */ -// try { -// setGrammarAppProtocol(getGrammarFactory().createGrammars( -// getClass().getResourceAsStream(GlobalValues.SCHEMA_PATH_APP_PROTOCOL.toString()))); -// setGrammarMsgDef(getGrammarFactory().createGrammars( -// getClass().getResourceAsStream(GlobalValues.SCHEMA_PATH_MSG_DEF.toString()), -// XSDResolver.getInstance())); -// } catch (EXIException e) { -// getLogger().error("Error occurred while trying to initialize EXIficientCodec (EXIException)!", e); -// } -// } -// -// public static EXIficientCodec getInstance() { -// return instance; -// } -// // -- END: SINGLETON DEFINITION -- -// -// -// -// -// public synchronized byte[] encodeEXI(Object jaxbObject, boolean supportedAppProtocolHandshake) { -// InputStream inStream = marshalToInputStream(jaxbObject); -// ByteArrayOutputStream baos = new ByteArrayOutputStream(); -// baos = ((ByteArrayOutputStream) encode(inStream, supportedAppProtocolHandshake)); -// -// return baos.toByteArray(); -// } -// -// -// private synchronized OutputStream encode(InputStream jaxbXML, boolean supportedAppProtocolHandshake) { -// if (supportedAppProtocolHandshake) return encode(jaxbXML, getGrammarAppProtocol()); -// else return encode(jaxbXML, getGrammarMsgDef()); -// } -// -// -// private synchronized OutputStream encode(InputStream jaxbXML, Grammars grammar) { -// EXIResult exiResult = null; -// -// try { -// exiFactory.setGrammars(grammar); -// encodeOS = new ByteArrayOutputStream(); -// exiResult = new EXIResult(exiFactory); -// exiResult.setOutputStream(encodeOS); -// XMLReader xmlReader = XMLReaderFactory.createXMLReader(); -// xmlReader.setContentHandler(exiResult.getHandler()); -// -// // parse xml file -// xmlReader.parse(new InputSource(jaxbXML)); -// -// encodeOS.close(); -// } catch (SAXException | IOException | EXIException e) { -// getLogger().error(e.getClass().getSimpleName() + " occurred while trying to encode", e); -// } -// -// return encodeOS; -// } -// -// -// @Override -// public synchronized Object decodeEXI(byte[] exiEncodedMessage, boolean supportedAppProtocolHandshake) { -// ByteArrayInputStream bais = new ByteArrayInputStream(exiEncodedMessage); -// setDecodedExi(decode(bais, supportedAppProtocolHandshake)); -// -// return unmarshallToMessage(getDecodedExi()); -// } -// -// -// private synchronized String decode(InputStream exiInputStream, boolean supportedAppProtocolHandshake) { -// TransformerFactory tf = TransformerFactory.newInstance(); -// Transformer transformer = null; -// StringWriter stringWriter = new StringWriter(); -// -// try { -// transformer = tf.newTransformer(); -// } catch (TransformerConfigurationException e) { -// getLogger().error("Error occurred while trying to decode (TransformerConfigurationException)", e); -// } -// -// if (supportedAppProtocolHandshake) exiFactory.setGrammars(grammarAppProtocol); -// else exiFactory.setGrammars(grammarMsgDef); -// -// try { -// EXISource saxSource = new EXISource(exiFactory); -// SAXSource exiSource = new SAXSource(new InputSource(exiInputStream)); -// XMLReader exiReader = saxSource.getXMLReader(); -// exiSource.setXMLReader(exiReader); -// transformer.transform(exiSource, new StreamResult(stringWriter)); -// } catch (EXIException e) { -// getLogger().error("Error occurred while trying to decode (EXIException)", e); -// } catch (TransformerException e) { -// getLogger().error("Error occurred while trying to decode (TransformerException)", e); -// } -// -// return stringWriter.toString(); -// } -// -// private Grammars getGrammarAppProtocol() { -// return grammarAppProtocol; -// } -// -// private void setGrammarAppProtocol(Grammars grammarAppProtocol) { -// this.grammarAppProtocol = grammarAppProtocol; -// } -// -// private Grammars getGrammarMsgDef() { -// return grammarMsgDef; -// } -// -// private void setGrammarMsgDef(Grammars grammarMsgDef) { -// this.grammarMsgDef = grammarMsgDef; -// } -// -// private EXIFactory getExiFactory() { -// return exiFactory; -// } -// -// private void setExiFactory(EXIFactory exiFactory) { -// this.exiFactory = exiFactory; -// } -// -// private GrammarFactory getGrammarFactory() { -// return grammarFactory; -// } -// -// private void setGrammarFactory(GrammarFactory grammarFactory) { -// this.grammarFactory = grammarFactory; -// } -//} +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.io.StringWriter; + +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerConfigurationException; +import javax.xml.transform.TransformerException; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.sax.SAXSource; +import javax.xml.transform.stream.StreamResult; + +import org.eclipse.risev2g.shared.enumerations.GlobalValues; +import org.eclipse.risev2g.shared.utils.ByteUtils; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; +import org.xml.sax.XMLReader; +import org.xml.sax.helpers.XMLReaderFactory; + +import com.siemens.ct.exi.EXIFactory; +import com.siemens.ct.exi.GrammarFactory; +import com.siemens.ct.exi.api.sax.EXIResult; +import com.siemens.ct.exi.api.sax.EXISource; +import com.siemens.ct.exi.exceptions.EXIException; +import com.siemens.ct.exi.grammars.Grammars; +import com.siemens.ct.exi.helpers.DefaultEXIFactory; + +public final class EXIficientCodec extends ExiCodec { + // -- BEGIN: SINGLETON DEFINITION -- + /* + * Eager instantiation of the singleton, since a EXIficientCodec is always needed. + * The JVM creates the unique instance when the class is loaded and before any thread tries to + * access the instance variable -> thread safe. + */ + private static final EXIficientCodec instance = new EXIficientCodec(); + + private EXIFactory exiFactory; + private GrammarFactory grammarFactory; + private Grammars grammarAppProtocol; + private Grammars grammarMsgDef; + private OutputStream encodeOS; + + private EXIficientCodec() { + super(); + + setExiFactory(DefaultEXIFactory.newInstance()); + getExiFactory().setValuePartitionCapacity(0); + setGrammarFactory(GrammarFactory.newInstance()); + + /* + * The supportedAppProtocolReq and -Res message have a different schema than the rest + * of the V2G application layer messages + */ + try { + setGrammarAppProtocol(getGrammarFactory().createGrammars( + getClass().getResourceAsStream(GlobalValues.SCHEMA_PATH_APP_PROTOCOL.toString()))); + setGrammarMsgDef(getGrammarFactory().createGrammars( + getClass().getResourceAsStream(GlobalValues.SCHEMA_PATH_MSG_DEF.toString()), + XSDResolver.getInstance())); + } catch (EXIException e) { + getLogger().error("Error occurred while trying to initialize EXIficientCodec (EXIException)!", e); + } + } + + public static EXIficientCodec getInstance() { + return instance; + } + // -- END: SINGLETON DEFINITION -- + + + + + public synchronized byte[] encodeEXI(Object jaxbObject, boolean supportedAppProtocolHandshake) { + InputStream inStream = marshalToInputStream(jaxbObject); + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + baos = ((ByteArrayOutputStream) encode(inStream, supportedAppProtocolHandshake)); + + return baos.toByteArray(); + } + + + private synchronized OutputStream encode(InputStream jaxbXML, boolean supportedAppProtocolHandshake) { + if (supportedAppProtocolHandshake) return encode(jaxbXML, getGrammarAppProtocol()); + else return encode(jaxbXML, getGrammarMsgDef()); + } + + + private synchronized OutputStream encode(InputStream jaxbXML, Grammars grammar) { + EXIResult exiResult = null; + + try { + exiFactory.setGrammars(grammar); + encodeOS = new ByteArrayOutputStream(); + exiResult = new EXIResult(exiFactory); + exiResult.setOutputStream(encodeOS); + XMLReader xmlReader = XMLReaderFactory.createXMLReader(); + xmlReader.setContentHandler(exiResult.getHandler()); + + // parse xml file + xmlReader.parse(new InputSource(jaxbXML)); + + encodeOS.close(); + } catch (SAXException | IOException | EXIException e) { + getLogger().error(e.getClass().getSimpleName() + " occurred while trying to encode", e); + } + + return encodeOS; + } + + + @Override + public synchronized Object decodeEXI(byte[] exiEncodedMessage, boolean supportedAppProtocolHandshake) { + ByteArrayInputStream bais = new ByteArrayInputStream(exiEncodedMessage); + setDecodedExi(decode(bais, supportedAppProtocolHandshake)); + + return unmarshallToMessage(getDecodedExi()); + } + + + private synchronized String decode(InputStream exiInputStream, boolean supportedAppProtocolHandshake) { + TransformerFactory tf = TransformerFactory.newInstance(); + Transformer transformer = null; + StringWriter stringWriter = new StringWriter(); + + try { + transformer = tf.newTransformer(); + } catch (TransformerConfigurationException e) { + getLogger().error("Error occurred while trying to decode (TransformerConfigurationException)", e); + } + + if (supportedAppProtocolHandshake) exiFactory.setGrammars(grammarAppProtocol); + else exiFactory.setGrammars(grammarMsgDef); + + try { + EXISource saxSource = new EXISource(exiFactory); + SAXSource exiSource = new SAXSource(new InputSource(exiInputStream)); + XMLReader exiReader = saxSource.getXMLReader(); + exiSource.setXMLReader(exiReader); + transformer.transform(exiSource, new StreamResult(stringWriter)); + } catch (EXIException e) { + getLogger().error("Error occurred while trying to decode (EXIException)", e); + } catch (TransformerException e) { + getLogger().error("Error occurred while trying to decode (TransformerException)", e); + } + + return stringWriter.toString(); + } + + private Grammars getGrammarAppProtocol() { + return grammarAppProtocol; + } + + private void setGrammarAppProtocol(Grammars grammarAppProtocol) { + this.grammarAppProtocol = grammarAppProtocol; + } + + private Grammars getGrammarMsgDef() { + return grammarMsgDef; + } + + private void setGrammarMsgDef(Grammars grammarMsgDef) { + this.grammarMsgDef = grammarMsgDef; + } + + private EXIFactory getExiFactory() { + return exiFactory; + } + + private void setExiFactory(EXIFactory exiFactory) { + this.exiFactory = exiFactory; + } + + private GrammarFactory getGrammarFactory() { + return grammarFactory; + } + + private void setGrammarFactory(GrammarFactory grammarFactory) { + this.grammarFactory = grammarFactory; + } +} diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/ExiCodec.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/ExiCodec.java index bd77a92..3329589 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/ExiCodec.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/ExiCodec.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.exiCodec; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/OpenEXICodec.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/OpenEXICodec.java index 4529667..bae035e 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/OpenEXICodec.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/OpenEXICodec.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.exiCodec; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/XSDResolver.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/XSDResolver.java index ad1f866..50d15af 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/XSDResolver.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/exiCodec/XSDResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.exiCodec; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ChangeProcessingState.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ChangeProcessingState.java index bb53523..c347f20 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ChangeProcessingState.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ChangeProcessingState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.messageHandling; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/MessageHandler.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/MessageHandler.java index 3b87aea..310f0ab 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/MessageHandler.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/MessageHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.messageHandling; @@ -19,11 +19,13 @@ import javax.xml.bind.JAXBElement; import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.LogManager; import org.eclipse.risev2g.shared.enumerations.GlobalValues; +import org.eclipse.risev2g.shared.exiCodec.EXIficientCodec; import org.eclipse.risev2g.shared.exiCodec.ExiCodec; import org.eclipse.risev2g.shared.exiCodec.OpenEXICodec; import org.eclipse.risev2g.shared.misc.V2GCommunicationSession; import org.eclipse.risev2g.shared.misc.V2GTPMessage; import org.eclipse.risev2g.shared.utils.ByteUtils; +import org.eclipse.risev2g.shared.utils.MiscUtils; import org.eclipse.risev2g.shared.utils.SecurityUtils; import org.eclipse.risev2g.shared.v2gMessages.msgDef.BodyBaseType; import org.eclipse.risev2g.shared.v2gMessages.msgDef.BodyType; @@ -56,8 +58,8 @@ public class MessageHandler { */ public MessageHandler() { // Choose which implementation of an EXI codec to use -// setExiCodec(EXIficientCodec.getInstance()); - setExiCodec(OpenEXICodec.getInstance()); + setExiCodec(EXIficientCodec.getInstance()); +// setExiCodec(OpenEXICodec.getInstance()); } public boolean isV2GTPMessageValid(V2GTPMessage v2gTpMessage) { @@ -112,7 +114,12 @@ public class MessageHandler { public synchronized Object v2gMsgToExi(Object jaxbObject) { - return getExiCodec().encodeEXI(jaxbObject, false); + byte[] encodedEXI = getExiCodec().encodeEXI(jaxbObject, false); + + // For test purposes you can log the byte array +// getLogger().debug("Encoded EXI byte array: " + ByteUtils.toStringFromByteArray(encodedEXI)); + + return encodedEXI; } @@ -121,6 +128,9 @@ public class MessageHandler { } public synchronized Object exiToV2gMsg(byte[] exiEncodedMessage) { + // For debugging purposes +// getLogger().debug("Hex string of encoded EXI byte array: " + ByteUtils.toHexString(exiEncodedMessage)); + return getExiCodec().decodeEXI(exiEncodedMessage, false); } diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/PauseSession.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/PauseSession.java index 222e04c..4e570ee 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/PauseSession.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/PauseSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.messageHandling; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ReactionToIncomingMessage.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ReactionToIncomingMessage.java index 90d96aa..8528725 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ReactionToIncomingMessage.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/ReactionToIncomingMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.messageHandling; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/SendMessage.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/SendMessage.java index 48b3437..39b26a5 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/SendMessage.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/SendMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.messageHandling; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/TerminateSession.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/TerminateSession.java index b104243..774f283 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/TerminateSession.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/messageHandling/TerminateSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.messageHandling; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/State.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/State.java index cad8a42..1de5452 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/State.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/State.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.misc; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/TimeRestrictions.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/TimeRestrictions.java index 952790f..6687492 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/TimeRestrictions.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/TimeRestrictions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.misc; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GCommunicationSession.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GCommunicationSession.java index acbcd4e..d383747 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GCommunicationSession.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GCommunicationSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.misc; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GTPMessage.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GTPMessage.java index 321fae2..af39308 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GTPMessage.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/misc/V2GTPMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.misc; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/ByteUtils.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/ByteUtils.java index 27bd9fe..a1492ac 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/ByteUtils.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/ByteUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.utils; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/MiscUtils.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/MiscUtils.java index 4ca9d41..16c394b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/MiscUtils.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/MiscUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.utils; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/SecurityUtils.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/SecurityUtils.java index ed7bc04..d78581b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/SecurityUtils.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/utils/SecurityUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.utils; @@ -47,6 +47,7 @@ import java.security.interfaces.ECPrivateKey; import java.security.interfaces.ECPublicKey; import java.security.spec.ECGenParameterSpec; import java.security.spec.ECParameterSpec; +import java.security.spec.ECPoint; import java.security.spec.ECPrivateKeySpec; import java.security.spec.InvalidKeySpecException; import java.security.spec.InvalidParameterSpecException; @@ -615,6 +616,7 @@ public final class SecurityUtils { ECPrivateKeySpec ecPrivateKeySpec = new ECPrivateKeySpec(new BigInteger(privateKeyBytes), ecParameterSpec); ECPrivateKey privateKey = (ECPrivateKey) KeyFactory.getInstance("EC").generatePrivate(ecPrivateKeySpec); + return privateKey; } catch (NoSuchAlgorithmException | InvalidKeySpecException | InvalidParameterSpecException e) { getLogger().error(e.getClass().getSimpleName() + " occurred when trying to get private key from raw bytes", e); @@ -810,24 +812,28 @@ public final class SecurityUtils { public static boolean saveContractCertificateChain( String keyStorePassword, CertificateChainType contractCertChain, - PrivateKey contractCertPrivateKey) { + ECPrivateKey contractCertPrivateKey) { KeyStore keyStore = getKeyStore(GlobalValues.EVCC_KEYSTORE_FILEPATH.toString(), keyStorePassword); try { - keyStore.setKeyEntry( - GlobalValues.ALIAS_CONTRACT_CERTIFICATE.toString(), - contractCertPrivateKey, - keyStorePassword.toCharArray(), - getCertificateChain(contractCertChain)); - - // Save the keystore persistently - FileOutputStream fos = new FileOutputStream("evccKeystore.jks"); - keyStore.store(fos, GlobalValues.PASSPHRASE_FOR_CERTIFICATES_AND_KEYS.toString().toCharArray()); - fos.close(); - - getLogger().info("Contract certificate with distinguished name '" + - getCertificate(contractCertChain.getCertificate()) - .getSubjectX500Principal().getName() + "' saved"); + if (!isPrivateKeyValid(contractCertPrivateKey, contractCertChain)) { + keyStore.setKeyEntry( + GlobalValues.ALIAS_CONTRACT_CERTIFICATE.toString(), + contractCertPrivateKey, + keyStorePassword.toCharArray(), + getCertificateChain(contractCertChain)); + + // Save the keystore persistently + FileOutputStream fos = new FileOutputStream("evccKeystore.jks"); + keyStore.store(fos, GlobalValues.PASSPHRASE_FOR_CERTIFICATES_AND_KEYS.toString().toCharArray()); + fos.close(); + + getLogger().info("Contract certificate with distinguished name '" + + getCertificate(contractCertChain.getCertificate()) + .getSubjectX500Principal().getName() + "' saved"); + } else { + return false; + } } catch (KeyStoreException | NoSuchAlgorithmException | CertificateException | IOException | NullPointerException e) { getLogger().error(e.getClass().getSimpleName() + " occurred while trying to save contract " + "certificate chain", e); @@ -838,6 +844,48 @@ public final class SecurityUtils { } + private static boolean isPrivateKeyValid(ECPrivateKey privateKey, CertificateChainType contractCertChain) { + AlgorithmParameters parameters; + + try { + parameters = AlgorithmParameters.getInstance("EC"); + parameters.init(new ECGenParameterSpec("secp256r1")); + + ECParameterSpec ecParameterSpec = parameters.getParameterSpec(ECParameterSpec.class); + + // Now we need to check if the private key is correct (see requirement [V2G2-823]) + BigInteger order = ecParameterSpec.getOrder(); + ECPoint basePoint = ecParameterSpec.getGenerator(); + BigInteger privateKeyValue = privateKey.getS(); + X509Certificate contractCert = getCertificate(contractCertChain.getCertificate()); + ECPublicKey publicKey = (ECPublicKey) contractCert.getPublicKey(); + + // 1. check + if (privateKeyValue.compareTo(order) != -1) { + getLogger().error("Validation of private key failed: its value is not strictly smaller than the " + + "order of the base point"); + return false; + } + + // 2. check + /* + * TODO: + * No idea how to check for + * "multiplication of the base point with this value must generate a key matching the public key of + * the contract certificate" + * "this value" = value of private key + * -> some more expert knowledge on the arithmetic of elliptic curves is needed to tackle this! + */ + + } catch (NoSuchAlgorithmException | InvalidParameterSpecException e) { + getLogger().error(e.getClass().getSimpleName() + " occurred when trying to get private key from raw bytes", e); + return false; + } + + return true; + } + + public static X509Certificate getContractCertificate() { X509Certificate contractCertificate = null; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryReq.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryReq.java index 207c951..8de084d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryReq.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.v2gMessages; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryRes.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryRes.java index ca7582b..6ebefd6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryRes.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/SECCDiscoveryRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ package org.eclipse.risev2g.shared.v2gMessages; diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/AppProtocolType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/AppProtocolType.java index 01633e3..ec51c18 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/AppProtocolType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/AppProtocolType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ObjectFactory.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ObjectFactory.java index fee4dcb..e485d81 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ObjectFactory.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ObjectFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ResponseCodeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ResponseCodeType.java index 42063c1..187543e 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ResponseCodeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/ResponseCodeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolReq.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolReq.java index 1bca5e6..a2d1a86 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolReq.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolReq.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolRes.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolRes.java index 57bdb58..b5b961b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolRes.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/SupportedAppProtocolRes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/package-info.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/package-info.java index 4917bf0..736b247 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/package-info.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/appProtocol/package-info.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVChargeParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVChargeParameterType.java index 11bec17..138a317 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVChargeParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVChargeParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEChargeParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEChargeParameterType.java index 943401c..e4c94ac 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEChargeParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEChargeParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEStatusType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEStatusType.java index e8d2537..317c0be 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEStatusType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ACEVSEStatusType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationReqType.java index 55c4e0b..14d71a9 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationResType.java index e0f24dd..38822f0 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/AuthorizationResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyBaseType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyBaseType.java index d08cf13..ecac83d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyBaseType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyBaseType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyType.java index 469ff32..fc92545 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/BodyType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckReqType.java index de08b3d..fd9b5a0 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckResType.java index a375fb1..7fa0ad2 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CableCheckResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CanonicalizationMethodType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CanonicalizationMethodType.java index 18dec0d..1db017c 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CanonicalizationMethodType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CanonicalizationMethodType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateChainType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateChainType.java index 3d01bb8..32d0018 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateChainType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateChainType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationReqType.java index 156a9cd..aa5537e 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationResType.java index b5810d7..a2f69a2 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateInstallationResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateReqType.java index 3660544..105931c 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateResType.java index 3f920de..aebc287 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CertificateUpdateResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryReqType.java index 6b73bda..ff9f479 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryResType.java index f688e15..7ab071d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeParameterDiscoveryResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeProgressType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeProgressType.java index 1a9ad17..1c28cc3 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeProgressType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeProgressType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeServiceType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeServiceType.java index f50a659..c9bb5b8 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeServiceType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargeServiceType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingProfileType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingProfileType.java index 83a4795..8a2ee83 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingProfileType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingProfileType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingSessionType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingSessionType.java index c7d3652..f4862ae 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingSessionType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingSessionType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusReqType.java index 658e3e9..694ff8d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusResType.java index 4e66cd8..3caa5fc 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ChargingStatusResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ConsumptionCostType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ConsumptionCostType.java index 0d4bcf3..1fe2005 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ConsumptionCostType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ConsumptionCostType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ContractSignatureEncryptedPrivateKeyType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ContractSignatureEncryptedPrivateKeyType.java index 126044d..899a9cd 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ContractSignatureEncryptedPrivateKeyType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ContractSignatureEncryptedPrivateKeyType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostKindType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostKindType.java index f0ff955..e4e47d6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostKindType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostKindType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostType.java index cd24de6..009f36e 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CostType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandReqType.java index e62783d..d78be1a 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandResType.java index 8da2277..2b058c3 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/CurrentDemandResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVChargeParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVChargeParameterType.java index 5cd4c24..e834e2a 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVChargeParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVChargeParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVErrorCodeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVErrorCodeType.java index 74a36ec..1bcee02 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVErrorCodeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVErrorCodeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVPowerDeliveryParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVPowerDeliveryParameterType.java index 4a2ff45..826075b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVPowerDeliveryParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVPowerDeliveryParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEChargeParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEChargeParameterType.java index a0a1e73..46cd993 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEChargeParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEChargeParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusCodeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusCodeType.java index 4f32d27..60ca474 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusCodeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusCodeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusType.java index 097a19b..d6017d0 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVSEStatusType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVStatusType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVStatusType.java index 3e76e23..8773377 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVStatusType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DCEVStatusType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DSAKeyValueType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DSAKeyValueType.java index 4bc093f..538849a 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DSAKeyValueType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DSAKeyValueType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DiffieHellmanPublickeyType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DiffieHellmanPublickeyType.java index 9c1932f..74b8949 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DiffieHellmanPublickeyType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DiffieHellmanPublickeyType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DigestMethodType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DigestMethodType.java index bb41145..3bf8cab 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DigestMethodType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/DigestMethodType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EMAIDType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EMAIDType.java index 57715c9..9ad7c4d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EMAIDType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EMAIDType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVChargeParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVChargeParameterType.java index c802417..156434f 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVChargeParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVChargeParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVPowerDeliveryParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVPowerDeliveryParameterType.java index f721c02..e444204 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVPowerDeliveryParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVPowerDeliveryParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEChargeParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEChargeParameterType.java index ca3abef..12e3cf9 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEChargeParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEChargeParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSENotificationType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSENotificationType.java index dc59b5e..fc0c693 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSENotificationType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSENotificationType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEProcessingType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEProcessingType.java index 5294711..b20e513 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEProcessingType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEProcessingType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEStatusType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEStatusType.java index 1e7d3bb..429966d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEStatusType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVSEStatusType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVStatusType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVStatusType.java index eafb42d..38ebef8 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVStatusType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EVStatusType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EnergyTransferModeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EnergyTransferModeType.java index 828f3c0..1775b01 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EnergyTransferModeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EnergyTransferModeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EntryType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EntryType.java index e4f1992..25babfa 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EntryType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/EntryType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/FaultCodeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/FaultCodeType.java index 67149ef..7a0e30f 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/FaultCodeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/FaultCodeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IntervalType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IntervalType.java index f531b18..e937039 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IntervalType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IntervalType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IsolationLevelType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IsolationLevelType.java index 9062a4f..9c0c3e9 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IsolationLevelType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/IsolationLevelType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyInfoType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyInfoType.java index 6174ffd..34866bb 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyInfoType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyInfoType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyValueType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyValueType.java index 3885c72..31c82ac 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyValueType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/KeyValueType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ListOfRootCertificateIDsType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ListOfRootCertificateIDsType.java index 4f04530..a53c3a1 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ListOfRootCertificateIDsType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ListOfRootCertificateIDsType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ManifestType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ManifestType.java index 77cda13..538226c 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ManifestType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ManifestType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MessageHeaderType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MessageHeaderType.java index a0ea831..767d364 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MessageHeaderType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MessageHeaderType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeterInfoType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeterInfoType.java index 639821c..f1f900a 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeterInfoType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeterInfoType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptReqType.java index 28e49d2..1800dda 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptResType.java index d42d3ea..0208695 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/MeteringReceiptResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/NotificationType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/NotificationType.java index 7b97c3f..86c5524 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/NotificationType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/NotificationType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectFactory.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectFactory.java index 8961acb..6ba9838 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectFactory.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectType.java index b766e5d..e84d0c2 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ObjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PGPDataType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PGPDataType.java index 839c70b..18c26ea 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PGPDataType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PGPDataType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleEntryType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleEntryType.java index 579835a..dc73abb 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleEntryType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleEntryType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleType.java index 58a279a..d3c027d 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PMaxScheduleType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterSetType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterSetType.java index ca4f0d8..9f80d89 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterSetType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterSetType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterType.java index 2a48edc..6f6cc65 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsReqType.java index 5e2aae9..b1b64e1 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsResType.java index ede7c43..ffc6eec 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentDetailsResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionListType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionListType.java index 14fdb0a..af95a02 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionListType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionListType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionType.java index 925100b..002446c 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentOptionType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionReqType.java index 9381a9a..e7e55b5 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionResType.java index dfc371b..9a39800 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PaymentServiceSelectionResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PhysicalValueType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PhysicalValueType.java index fe1e0bc..45c90c3 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PhysicalValueType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PhysicalValueType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryReqType.java index 7f1a508..5be4bda 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryResType.java index a46f580..32c3ee2 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PowerDeliveryResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeReqType.java index 0da4973..491b738 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeResType.java index 55252d2..cb8b3c5 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/PreChargeResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ProfileEntryType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ProfileEntryType.java index f3a2801..b5c27dd 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ProfileEntryType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ProfileEntryType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RSAKeyValueType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RSAKeyValueType.java index 6d6a5b2..862e435 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RSAKeyValueType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RSAKeyValueType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ReferenceType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ReferenceType.java index f481a77..56e92ad 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ReferenceType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ReferenceType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RelativeTimeIntervalType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RelativeTimeIntervalType.java index cc5fd0a..e541ca6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RelativeTimeIntervalType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RelativeTimeIntervalType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ResponseCodeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ResponseCodeType.java index 07da277..a993c58 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ResponseCodeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ResponseCodeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RetrievalMethodType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RetrievalMethodType.java index a0783b2..90a3d0e 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RetrievalMethodType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/RetrievalMethodType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleListType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleListType.java index 1cf9ff1..1d0dcf2 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleListType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleListType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleTupleType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleTupleType.java index 0a73e07..58ae8f6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleTupleType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SAScheduleTupleType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SASchedulesType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SASchedulesType.java index 526e2b4..7424844 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SASchedulesType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SASchedulesType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SPKIDataType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SPKIDataType.java index d96956c..5c2fcb6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SPKIDataType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SPKIDataType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffEntryType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffEntryType.java index e230c30..cec8722 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffEntryType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffEntryType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffType.java index 747286f..1af2706 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SalesTariffType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceListType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceListType.java index a4832db..8a8e1f1 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceListType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceListType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceType.java index acab2b6..b385054 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SelectedServiceType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceCategoryType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceCategoryType.java index ac6c552..45c82f1 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceCategoryType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceCategoryType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailReqType.java index 92d7899..0c10e32 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailResType.java index d30b4a1..cf52940 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDetailResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryReqType.java index a1df371..a43a058 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryResType.java index 191d3b2..d652f27 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceDiscoveryResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceListType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceListType.java index 5e67487..6cab6b6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceListType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceListType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceParameterListType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceParameterListType.java index 7ef3e9f..61ff110 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceParameterListType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceParameterListType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceType.java index b358f18..9791d5b 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ServiceType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupReqType.java index 473006e..f9ec330 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupResType.java index 4a6bf7c..f88aacc 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionSetupResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopReqType.java index 208d352..ebde0a8 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopResType.java index 262ebe9..189f26f 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SessionStopResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureMethodType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureMethodType.java index 4c50a3a..adcbeb6 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureMethodType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureMethodType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertiesType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertiesType.java index a39fd82..dd71496 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertiesType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertiesType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertyType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertyType.java index 5a9dc93..4f3a97a 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertyType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignaturePropertyType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureType.java index 41d5c7b..03e6328 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureValueType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureValueType.java index ccfebeb..0f656e4 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureValueType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignatureValueType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignedInfoType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignedInfoType.java index 536f3c2..b513211 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignedInfoType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SignedInfoType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SubCertificatesType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SubCertificatesType.java index 99168c2..52f1d41 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SubCertificatesType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SubCertificatesType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SupportedEnergyTransferModeType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SupportedEnergyTransferModeType.java index adfdd09..cb8ab03 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SupportedEnergyTransferModeType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/SupportedEnergyTransferModeType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformType.java index 77632f2..8138bf1 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformsType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformsType.java index a3198ed..5a827bc 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformsType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/TransformsType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/UnitSymbolType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/UnitSymbolType.java index 3eca8f6..2248cec 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/UnitSymbolType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/UnitSymbolType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/V2GMessage.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/V2GMessage.java index 9478e32..ae70bd9 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/V2GMessage.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/V2GMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ValueType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ValueType.java index 3f3ae5f..9fabba0 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ValueType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/ValueType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionReqType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionReqType.java index 0ce4f15..5f62cea 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionReqType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionReqType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionResType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionResType.java index 5025de6..0bf2975 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionResType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/WeldingDetectionResType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509DataType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509DataType.java index eed4866..f687e16 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509DataType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509DataType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509IssuerSerialType.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509IssuerSerialType.java index 793a3f7..022f881 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509IssuerSerialType.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/X509IssuerSerialType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert diff --git a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/package-info.java b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/package-info.java index 671b442..6696c05 100644 --- a/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/package-info.java +++ b/RISE-V2G-Shared/src/main/java/org/eclipse/risev2g/shared/v2gMessages/msgDef/package-info.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2015 Marc Mültin (Chargepartner GmbH). + * 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 (Chargepartner GmbH) - initial API and implementation and initial documentation + * Dr.-Ing. Marc Mültin - initial API and implementation and initial documentation *******************************************************************************/ // // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert