/* =================================================================== * DatumDataSource.java * * Created Nov 30, 2009 4:52:53 PM * * Copyright 2007-2009 SolarNetwork.net Dev Team * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA * =================================================================== */ package net.solarnetwork.node; import net.solarnetwork.node.domain.Datum; /** * API for collecting {@link Datum} objects from some device. * * @author matt * @version 1.2 * @param <T> * the Datum type */ public interface DatumDataSource<T extends Datum> extends Identifiable { /** * An {@link org.osgi.service.event.Event} topic for when a {@link Datum} * has been read, sampled, or in some way captured by a * {@link DatumDataSource}. The properties of the event shall be any of the * JavaBean properties of the Datum supported by events (i.e. any simple * Java property such as numbers and strings). In addition, the * {@link #EVENT_DATUM_CAPTURED_DATUM_TYPE} property shall be populated with * the name of the <em>core</em> class name of the datum type. * * @since 1.2 */ public static final String EVENT_TOPIC_DATUM_CAPTURED = "net/solarnetwork/node/DatumDataSource/DATUM_CAPTURED"; /** * An {@link org.osgi.service.event.Event} property for the string name of * the <em>core</em> class of the datum type associated with the event. * * @since 1.2 */ public static final String EVENT_DATUM_CAPTURED_DATUM_TYPE = "_DatumType"; /** * Get the class supported by this DataSource. * * @return class */ Class<? extends T> getDatumType(); /** * Read the current value from the data source, returning as an unpersisted * {@link Datum} object. * * @return Datum */ T readCurrentDatum(); }