Skip to content

Instantly share code, notes, and snippets.

@nullstyle
Created March 25, 2009 02:35
Show Gist options
  • Save nullstyle/84515 to your computer and use it in GitHub Desktop.
Save nullstyle/84515 to your computer and use it in GitHub Desktop.
public class FastPass {
public static String url(String key, String secret, String email, String name, String uid) throws OAuthException, IOException, URISyntaxException;
public static String url(String key, String secret, String email, String name, String uid, boolean isSecure) throws OAuthException, IOException, URISyntaxException;
public static String url(String key, String secret, String email, String name, String uid, boolean isSecure, HashMap<String, String> privateFields) throws OAuthException, IOException, URISyntaxException;
public static String script(String key, String secret, String email, String name, String uid) throws OAuthException, IOException, URISyntaxException;
public static String script(String key, String secret, String email, String name, String uid, boolean isSecure) throws OAuthException, IOException, URISyntaxException;
public static String script(String key, String secret, String email, String name, String uid, boolean isSecure, HashMap<String, String> privateFields) throws OAuthException, IOException, URISyntaxException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment