All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gurux.dlms.objects.GXDLMSMacPosTable Maven / Gradle / Ivy

There is a newer version: 4.0.72
Show newest version
package gurux.dlms.objects;

public class GXDLMSMacPosTable {
    /**
     * The 16-bit address the device is using to communicate through the PAN.
     * PIB attribute 0x53.
     */
    private int shortAddress;

    /**
     * Link Quality Indicator.
     */
    private short lqi;
    /**
     * Valid time.
     */
    private int validTime;

    /**
     * @return The 16-bit address the device is using to communicate through the
     *         PAN. PIB attribute 0x53.
     */
    public final int getShortAddress() {
        return shortAddress;
    }

    /**
     * @param value
     *            The 16-bit address the device is using to communicate through
     *            the PAN. PIB attribute 0x53.
     */
    public final void setShortAddress(final int value) {
        shortAddress = value;
    }

    /**
     * @return Link Quality Indicator.
     */
    public final short getLQI() {
        return lqi;
    }

    /**
     * @param value
     *            Link Quality Indicator.
     */
    public final void setLQI(final short value) {
        lqi = value;
    }

    /**
     * @return Valid time.
     */
    public final int getValidTime() {
        return validTime;
    }

    /**
     * @param value
     *            Valid time.
     */
    public final void setValidTime(final int value) {
        validTime = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy