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

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

There is a newer version: 1.3.7
Show newest version
package org.scribe.services;

import java.util.*;

/**
 * Implementation of {@link TimestampService} using plain java classes.
 * 
 * @author Pablo Fernandez
 */
public class TimestampServiceImpl implements TimestampService
{
  private Timer timer;

  /**
   * Default constructor. 
   */
  public TimestampServiceImpl()
  {
    timer = new Timer();
  }

  /**
   * {@inheritDoc}
   */
  public String getNonce()
  {
    Long ts = getTs();
    return String.valueOf(ts + timer.getRandomInteger());
  }

  /**
   * {@inheritDoc}
   */
  public String getTimestampInSeconds()
  {
    return String.valueOf(getTs());
  }

  private Long getTs()
  {
    return timer.getMilis() / 1000;
  }

  void setTimer(Timer timer)
  {
    this.timer = timer;
  }

  /**
   * Inner class that uses {@link System} for generating the timestamps.
   * 
   * @author Pablo Fernandez
   */
  static class Timer
  {
    Long getMilis()
    {
      return System.currentTimeMillis();
    }

    Integer getRandomInteger()
    {
      return new Random().nextInt();
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy