mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-26 05:18:06 +01:00
Make first account "master" for directory purposes
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
package org.whispersystems.textsecuregcm.util;
|
||||
|
||||
public class NumberData {
|
||||
private String number;
|
||||
private boolean active;
|
||||
private boolean supportsSms;
|
||||
|
||||
public NumberData(String number, boolean active, boolean supportsSms) {
|
||||
this.number = number;
|
||||
this.active = active;
|
||||
this.supportsSms = supportsSms;
|
||||
}
|
||||
|
||||
public boolean isActive() {
|
||||
return active;
|
||||
}
|
||||
|
||||
public boolean isSupportsSms() {
|
||||
return supportsSms;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user