PreKey.java

 1package im.conversations.android.xmpp.model.axolotl;
 2
 3import com.google.common.primitives.Ints;
 4import im.conversations.android.annotation.XmlElement;
 5import im.conversations.android.xmpp.model.Extension;
 6
 7@XmlElement(name = "preKeyPublic")
 8public class PreKey extends Extension implements ECPublicKeyContent {
 9
10    public PreKey() {
11        super(PreKey.class);
12    }
13
14    public int getId() {
15        return Ints.saturatedCast(this.getLongAttribute("preKeyId"));
16    }
17
18    public void setId(int id) {
19        this.setAttribute("preKeyId", id);
20    }
21}