439474caeb
(doesn't work but since it's a substantial chunk of stuff, I want to get it in sooner rather than later) git-svn-id: http://google-refine.googlecode.com/svn/trunk@516 7d457c2a-affb-35e4-300a-418c747d4874
20 lines
406 B
Java
20 lines
406 B
Java
package com.metaweb.gridworks.oauth;
|
|
|
|
|
|
public abstract class Provider {
|
|
|
|
protected String host;
|
|
|
|
public Provider(String host) {
|
|
this.host = host;
|
|
}
|
|
|
|
public String getHost() {
|
|
return host;
|
|
}
|
|
|
|
abstract public String getRequestTokenServiceURL();
|
|
abstract public String getAccessTokenServiceURL();
|
|
abstract public String getUserAuthorizationURL();
|
|
}
|