2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.mybmw.internal.dto.remote;
16 * The {@link ExecutionStatusContainer} Data Transfer Object
18 * @author Bernd Weymann - Initial contribution
19 * @author Martin Grassl - refactored to Java Bean
21 public class ExecutionStatusContainer {
22 private String eventId = "";
23 private String creationTime = "";
24 private String eventStatus = "";
25 private ExecutionError errorDetails = null;
27 public String getEventId() {
31 public void setEventId(String eventId) {
32 this.eventId = eventId;
35 public String getCreationTime() {
39 public void setCreationTime(String creationTime) {
40 this.creationTime = creationTime;
43 public String getEventStatus() {
47 public void setEventStatus(String eventStatus) {
48 this.eventStatus = eventStatus;
51 public ExecutionError getErrorDetails() {
55 public void setErrorDetails(ExecutionError errorDetails) {
56 this.errorDetails = errorDetails;
60 public String toString() {
61 return "ExecutionStatusContainer [eventId=" + eventId + ", creationTime=" + creationTime + ", eventStatus="
62 + eventStatus + ", errorDetails=" + errorDetails + "]";