
enterprises.orbital.evekit.model.ESIAccountServerResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sync Show documentation
Show all versions of sync Show documentation
Handles periodic synchronization of account data
The newest version!
package enterprises.orbital.evekit.model;
public class ESIAccountServerResult {
/**
* Time when this data expires. This is normally determined from the ESI headers.
*/
protected long expiryTime;
/**
* Opaque data object capturing the result of the server call.
*/
protected A data;
public ESIAccountServerResult(long expiryTime, A data) {
this.expiryTime = expiryTime;
this.data = data;
}
public long getExpiryTime() {
return expiryTime;
}
public A getData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy