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

org.scribe.model.Verifier Maven / Gradle / Ivy

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

import org.scribe.utils.*;

/**
 * Represents an OAuth verifier code.
 * 
 * @author Pablo Fernandez
 */
public class Verifier
{

  private final String value;

  /**
   * Default constructor.
   * 
   * @param value verifier value
   */
  public Verifier(String value)
  {
    Preconditions.checkNotNull(value, "Must provide a valid string as verifier");
    this.value = value;
  }

  public String getValue()
  {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy