blob: 05a4f7301d33217b29269b9bd0001a5b6159726d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* 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.om2m.sdt.home.netatmo.model;
import java.util.List;
public interface HomeListener {
public void notifyHomeAdded(Home newHome);
public void notifyCameraAddedOrUpdated(Home home, WelcomeCamera camera, boolean updated);
public void notifyPersonAddedOrUpdated(Home home, Person person, boolean updated);
public void notifyEventsUpdated(Home home, List<Event> events);
public void notifyWeatherStationAddedOrUpdated(WeatherStation ws, boolean updated);
}