com.sitewhere.microservice.api.device.asset.DeviceStateChangeWithAsset Maven / Gradle / Ivy
/*
* Copyright (c) SiteWhere, LLC. All rights reserved. http://www.sitewhere.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package com.sitewhere.microservice.api.device.asset;
import com.sitewhere.microservice.api.asset.IAssetManagement;
import com.sitewhere.spi.SiteWhereException;
import com.sitewhere.spi.device.event.IDeviceStateChange;
/**
* Wraps a {@link IDeviceStateChange} so that information about the asset
* associated with its assignment is available.
*/
public class DeviceStateChangeWithAsset extends DeviceEventWithAsset implements IDeviceStateChange {
/** Serial version UID */
private static final long serialVersionUID = -8012486373686574551L;
public DeviceStateChangeWithAsset(IDeviceStateChange wrapped, IAssetManagement assetManagement)
throws SiteWhereException {
super(wrapped, assetManagement);
}
/*
* @see com.sitewhere.spi.device.event.IDeviceStateChange#getAttribute()
*/
@Override
public String getAttribute() {
return ((IDeviceStateChange) getWrapped()).getAttribute();
}
/*
* @see com.sitewhere.spi.device.event.IDeviceStateChange#getType()
*/
@Override
public String getType() {
return ((IDeviceStateChange) getWrapped()).getType();
}
/*
* (non-Javadoc)
*
* @see com.sitewhere.spi.device.event.IDeviceStateChange#getPreviousState()
*/
@Override
public String getPreviousState() {
return ((IDeviceStateChange) getWrapped()).getPreviousState();
}
/*
* (non-Javadoc)
*
* @see com.sitewhere.spi.device.event.IDeviceStateChange#getNewState()
*/
@Override
public String getNewState() {
return ((IDeviceStateChange) getWrapped()).getNewState();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy