Package org.wsdmdemo.service.weatherStation

Examples of org.wsdmdemo.service.weatherStation.HumidityMetricType$Factory


    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

Related Classes of org.wsdmdemo.service.weatherStation.HumidityMetricType$Factory

Copyright © 2018 www.massapicom. 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.