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

com.belerweb.youkuapi.PID Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2011 the original author or authors.
 */
package com.belerweb.youkuapi;


/**
 * @author Jun
 * 
 */
public final class PID {

  private static String pid;

  /**
   * Get Pattern ID
   * 
   * @return PID
   */
  public static String getPid() {
    if (pid == null) {
      pid = System.getenv("Youku.PID");
    }
    if (pid == null) {
      pid = System.getProperty("Youku.PID");
    }
    if (pid == null) {
      throw new RuntimeException("No Youku.PID config.");
    }
    return pid;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy