gurux.dlms.objects.GXCoapCaptureTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gurux.dlms Show documentation
Show all versions of gurux.dlms Show documentation
gurux.dlms.java package is used to communicate with DLMS devices.
package gurux.dlms.objects;
import gurux.dlms.GXDateTime;
/**
* CoAP Capture time.
*/
public class GXCoapCaptureTime {
/**
* The most recent change attribute Id (3, 4 or 5).
*/
private byte attributeId;
/**
* Time stamp.
*/
private GXDateTime timeStamp;
/**
* @return The most recent change attribute Id (3, 4 or 5).
*/
public final byte getAttributeId() {
return attributeId;
}
/**
* @param value
* The most recent change attribute Id (3, 4 or 5).
*/
public final void setAttributeId(final byte value) {
attributeId = value;
}
/**
* @return Time stamp.
*/
public final GXDateTime getTimeStamp() {
return timeStamp;
}
/**
* @param value
* Time stamp.
*/
public final void setTimeStamp(final GXDateTime value) {
timeStamp = value;
}
}