All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enterprises.orbital.evekit.model.ESIAccountServerResult Maven / Gradle / Ivy

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