/** * Copyright (c) 1997, 2015 by ProSyst Software GmbH and others. * 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.automation.events; import org.eclipse.smarthome.automation.dto.RuleDTO; /** * An {@link RuleUpdatedEvent} notifies subscribers that an item has been added. * Rule added events must be created with the {@link RuleEventFactory}. * * @author Benedikt Niehues - initial contribution * */ public class RuleUpdatedEvent extends AbstractRuleRegistryEvent { public static final String TYPE = RuleUpdatedEvent.class.getSimpleName(); private RuleDTO oldRule; /** * constructs a new rule updated event * * @param topic the topic of the event * @param payload the payload of the event * @param source the source of the event * @param rule the rule for which is this event * @param oldRule the rule that has been updated */ public RuleUpdatedEvent(String topic, String payload, String source, RuleDTO rule, RuleDTO oldRule) { super(topic, payload, source, rule); this.oldRule = oldRule; } @Override public String getType() { return TYPE; } /** * @return the oldRuleDTO */ public RuleDTO getOldRule() { return oldRule; } @Override public String toString() { return "Rule '" + getRule().uid + "' has been updated."; } }