Refactor out old classes.
parent
f9934bd8e5
commit
f09abff407
@ -1,6 +0,0 @@
|
|||||||
package org.whispersystems.textsecure.storage;
|
|
||||||
|
|
||||||
public interface CanonicalRecipient {
|
|
||||||
// public String getNumber();
|
|
||||||
public long getRecipientId();
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
package org.whispersystems.textsecure.storage;
|
|
||||||
|
|
||||||
public class RecipientDevice {
|
|
||||||
|
|
||||||
public static final int DEFAULT_DEVICE_ID = 1;
|
|
||||||
|
|
||||||
private final long recipientId;
|
|
||||||
private final int deviceId;
|
|
||||||
|
|
||||||
public RecipientDevice(long recipientId, int deviceId) {
|
|
||||||
this.recipientId = recipientId;
|
|
||||||
this.deviceId = deviceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getRecipientId() {
|
|
||||||
return recipientId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getDeviceId() {
|
|
||||||
return deviceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CanonicalRecipient getRecipient() {
|
|
||||||
return new CanonicalRecipient() {
|
|
||||||
@Override
|
|
||||||
public long getRecipientId() {
|
|
||||||
return recipientId;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue