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

org.scribe.services.TimestampService Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
package org.scribe.services;

/**
 * Unix epoch timestamp generator.
 * 
 * This class is useful for stubbing in tests. 
 * 
 * @author Pablo Fernandez
 */
public interface TimestampService
{
  /**
   * Returns the unix epoch timestamp in seconds
   * 
   * @return timestamp
   */
  public String getTimestampInSeconds();

  /**
   * Returns a nonce (unique value for each request)
   * 
   * @return nonce
   */
  public String getNonce();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy