/** * Copyright (c) 2014-2017 by the respective copyright holders. * 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 */ package org.eclipse.smarthome.core.thing.events; import org.eclipse.smarthome.core.events.AbstractEvent; import org.eclipse.smarthome.core.thing.ThingRegistry; import org.eclipse.smarthome.core.thing.dto.ThingDTO; /** * Abstract implementation of a thing registry event which will be posted by a {@link ThingRegistry} for added, removed * and updated items. * * @author Stefan Bußweiler - Initial contribution */ public abstract class AbstractThingRegistryEvent extends AbstractEvent { private final ThingDTO thing; /** * Must be called in subclass constructor to create a new thing registry event. * * @param topic the topic * @param payload the payload * @param source the source, can be null * @param thing the thing */ protected AbstractThingRegistryEvent(String topic, String payload, String source, ThingDTO thing) { super(topic, payload, source); this.thing = thing; } /** * Gets the thing. * * @return the thing */ public ThingDTO getThing() { return thing; } }