SHA256
41 lines
1.8 KiB
Java
41 lines
1.8 KiB
Java
package shine.db.entities;
|
|
|
|
public class UserSettingsSyncPeerStateEntry {
|
|
private String ownerLogin;
|
|
private String remoteServerLogin;
|
|
private String remoteServerUrl;
|
|
private long cursorTimeMs;
|
|
private String cursorSettingKey;
|
|
private boolean bootstrapCompleted;
|
|
private Long lastSyncAtMs;
|
|
private String lastError;
|
|
private long updatedAtMs;
|
|
|
|
public String getOwnerLogin() { return ownerLogin; }
|
|
public void setOwnerLogin(String ownerLogin) { this.ownerLogin = ownerLogin; }
|
|
|
|
public String getRemoteServerLogin() { return remoteServerLogin; }
|
|
public void setRemoteServerLogin(String remoteServerLogin) { this.remoteServerLogin = remoteServerLogin; }
|
|
|
|
public String getRemoteServerUrl() { return remoteServerUrl; }
|
|
public void setRemoteServerUrl(String remoteServerUrl) { this.remoteServerUrl = remoteServerUrl; }
|
|
|
|
public long getCursorTimeMs() { return cursorTimeMs; }
|
|
public void setCursorTimeMs(long cursorTimeMs) { this.cursorTimeMs = cursorTimeMs; }
|
|
|
|
public String getCursorSettingKey() { return cursorSettingKey; }
|
|
public void setCursorSettingKey(String cursorSettingKey) { this.cursorSettingKey = cursorSettingKey; }
|
|
|
|
public boolean isBootstrapCompleted() { return bootstrapCompleted; }
|
|
public void setBootstrapCompleted(boolean bootstrapCompleted) { this.bootstrapCompleted = bootstrapCompleted; }
|
|
|
|
public Long getLastSyncAtMs() { return lastSyncAtMs; }
|
|
public void setLastSyncAtMs(Long lastSyncAtMs) { this.lastSyncAtMs = lastSyncAtMs; }
|
|
|
|
public String getLastError() { return lastError; }
|
|
public void setLastError(String lastError) { this.lastError = lastError; }
|
|
|
|
public long getUpdatedAtMs() { return updatedAtMs; }
|
|
public void setUpdatedAtMs(long updatedAtMs) { this.updatedAtMs = updatedAtMs; }
|
|
}
|