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

no.entur.android.nfc.websocket.messages.reader.ReaderEndPollingResponseMessage Maven / Gradle / Ivy

The newest version!
package no.entur.android.nfc.websocket.messages.reader;

import no.entur.android.nfc.websocket.messages.NfcStatusResponseMessage;

public class ReaderEndPollingResponseMessage extends NfcStatusResponseMessage {

    public static final int TYPE = 7;

    public ReaderEndPollingResponseMessage(int id) {
        super(TYPE, id);
    }

    public ReaderEndPollingResponseMessage(int id, int status) {
        super(TYPE, id);
        this.status = status;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy