Examples of HumidityMetricType


Examples of org.wsdmdemo.service.weatherStation.HumidityMetricType

    private double m_lastTemp = InteropConstants.DEFAULT_HUMIDITY;

    public ResourceProperty refreshProperty(ResourceProperty resourceProperty) throws CallbackFailedException
    {
        Calendar resetAt = Calendar.getInstance();
        HumidityMetricType prop_humidity = (HumidityMetricType) resourceProperty.get(0);
        prop_humidity.setDoubleValue(CallbackUtils.getNextRandomValue(m_lastTemp, InteropConstants.MAX_HUMIDITY, InteropConstants.MIN_HUMIDITY));
        prop_humidity.setResetAt(resetAt);
        return resourceProperty;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.