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.dscalarm.internal;
15 import java.util.EventObject;
18 * Event for Receiving API Messages.
20 * @author Russell Stephens - Initial Contribution
22 public class DSCAlarmEvent extends EventObject {
24 private static final long serialVersionUID = 1L;
25 private DSCAlarmMessage dscAlarmMessage;
32 public DSCAlarmEvent(Object source) {
37 * Adds the the received API Message to the event.
39 * @param dscAlarmMessage
41 public void dscAlarmEventMessage(DSCAlarmMessage dscAlarmMessage) {
42 this.dscAlarmMessage = dscAlarmMessage;
46 * Returns the API Message event from the DSC Alarm System.
50 public DSCAlarmMessage getDSCAlarmMessage() {
51 return dscAlarmMessage;