/** * Copyright (c) 2010-2016 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.openhab.binding.primare.internal; import java.util.EventObject; /** * Listener interface for receiving status updates from Primare receiver. * * @author Pauli Anttila, Veli-Pekka Juslin * @since 1.7.0 */ public class PrimareStatusUpdateEvent extends EventObject { private static final long serialVersionUID = -7109660432028125252L; public PrimareStatusUpdateEvent(Object source) { super(source); } /** * Invoked when received status updates from Primare receiver. * * @param data * Data from receiver. * */ public void StatusUpdateEventReceived(String ip, String data) { } }