org.telegram.mtproto.state.KnownSalt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.mtproto.state;
/**
* Created with IntelliJ IDEA.
* User: Ruben Bermudez
* Date: 07.11.13
* Time: 7:16
*/
public class KnownSalt {
private int validSince;
private int validUntil;
private long salt;
public KnownSalt(int validSince, int validUntil, long salt) {
this.validSince = validSince;
this.validUntil = validUntil;
this.salt = salt;
}
public int getValidSince() {
return this.validSince;
}
public int getValidUntil() {
return this.validUntil;
}
public long getSalt() {
return this.salt;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy