Uses of Class
org.openstreetmap.josm.data.oauth.OAuthToken

Packages that use OAuthToken
org.openstreetmap.josm.data.oauth   
org.openstreetmap.josm.gui.oauth   
org.openstreetmap.josm.gui.preferences.server   
org.openstreetmap.josm.io.auth   
 

Uses of OAuthToken in org.openstreetmap.josm.data.oauth
 

Methods in org.openstreetmap.josm.data.oauth that return OAuthToken
static OAuthToken OAuthToken.createToken(OAuthConsumer consumer)
          Creates an OAuthToken from the token currently managed by the OAuthConsumer.
 

Constructors in org.openstreetmap.josm.data.oauth with parameters of type OAuthToken
OAuthToken(OAuthToken other)
          Creates a clone of another token
 

Uses of OAuthToken in org.openstreetmap.josm.gui.oauth
 

Fields in org.openstreetmap.josm.gui.oauth declared as OAuthToken
private  OAuthToken AbstractAuthorizationUI.accessToken
           
private  OAuthToken RetrieveAccessTokenTask.accessToken
           
private  OAuthToken SemiAutomaticAuthorizationUI.requestToken
           
private  OAuthToken RetrieveRequestTokenTask.requestToken
           
private  OAuthToken RetrieveAccessTokenTask.requestToken
           
private  OAuthToken OAuthAuthorizationWizard.AcceptAccessTokenAction.token
           
private  OAuthToken TestAccessTokenTask.token
           
 

Methods in org.openstreetmap.josm.gui.oauth that return OAuthToken
 OAuthToken OAuthAuthorizationWizard.getAccessToken()
          Replies the Access Token entered using the wizard
 OAuthToken AbstractAuthorizationUI.getAccessToken()
          Replies the retrieved Access Token.
 OAuthToken RetrieveAccessTokenTask.getAccessToken()
          Replies the retrieved Access Token.
 OAuthToken OsmOAuthAuthorizationClient.getAccessToken(ProgressMonitor monitor)
          Submits a request for an Access Token to the Access Token Endpoint Url of the OAuth Service Provider and replies the request token.
 OAuthToken RetrieveRequestTokenTask.getRequestToken()
          Replies the request token.
 OAuthToken OsmOAuthAuthorizationClient.getRequestToken(ProgressMonitor monitor)
          Submits a request for a Request Token to the Request Token Endpoint Url of the OAuth Service Provider and replies the request token.
 

Methods in org.openstreetmap.josm.gui.oauth with parameters of type OAuthToken
 void OsmOAuthAuthorizationClient.authorise(OAuthToken requestToken, java.lang.String osmUserName, java.lang.String osmPassword, OsmPrivileges privileges, ProgressMonitor monitor)
          Automatically authorises a request token for a set of privileges.
protected  void OsmOAuthAuthorizationClient.fetchOAuthToken(OsmOAuthAuthorizationClient.SessionId sessionId, OAuthToken requestToken)
          Submits a request to the OSM website for a OAuth form.
protected  void AbstractAuthorizationUI.fireAccessTokenChanged(OAuthToken oldValue, OAuthToken newValue)
           
 java.lang.String OsmOAuthAuthorizationClient.getAuthoriseUrl(OAuthToken requestToken)
          Builds the authorise URL for a given Request Token.
protected  void OsmOAuthAuthorizationClient.sendAuthorisationRequest(OsmOAuthAuthorizationClient.SessionId sessionId, OAuthToken requestToken, OsmPrivileges privileges)
           
protected  void FullyAutomaticAuthorizationUI.setAccessToken(OAuthToken accessToken)
           
 void SemiAutomaticAuthorizationUI.ShowAccessTokenPanel.setAccessToken(OAuthToken accessToken)
           
 void AccessTokenInfoPanel.setAccessToken(OAuthToken token)
          Displays the key and secret in token.
protected  void AbstractAuthorizationUI.setAccessToken(OAuthToken accessToken)
          Sets the current Access Token.
 void OAuthAuthorizationWizard.AcceptAccessTokenAction.updateEnabledState(OAuthToken token)
           
 

Constructors in org.openstreetmap.josm.gui.oauth with parameters of type OAuthToken
OsmOAuthAuthorizationClient(OAuthParameters parameters, OAuthToken requestToken)
          Creates a new authorisation client with the parameters parameters and an already known Request Token.
RetrieveAccessTokenTask(java.awt.Component parent, OAuthParameters parameters, OAuthToken requestToken)
          Creates the task
TestAccessTokenTask(java.awt.Component parent, java.lang.String apiUrl, OAuthParameters parameters, OAuthToken accessToken)
          Create the task
 

Uses of OAuthToken in org.openstreetmap.josm.gui.preferences.server
 

Methods in org.openstreetmap.josm.gui.preferences.server that return OAuthToken
 OAuthToken OAuthAccessTokenHolder.getAccessToken()
           
 

Methods in org.openstreetmap.josm.gui.preferences.server with parameters of type OAuthToken
 void OAuthAccessTokenHolder.setAccessToken(OAuthToken token)
          Sets the access token hold by this holder.
 

Uses of OAuthToken in org.openstreetmap.josm.io.auth
 

Methods in org.openstreetmap.josm.io.auth that return OAuthToken
 OAuthToken CredentialsAgent.lookupOAuthAccessToken()
          Lookup the current OAuth Access Token to access the OSM server.
 OAuthToken JosmPreferencesCredentialAgent.lookupOAuthAccessToken()
          Lookup the current OAuth Access Token to access the OSM server.
 OAuthToken CredentialsManager.lookupOAuthAccessToken()
           
 

Methods in org.openstreetmap.josm.io.auth with parameters of type OAuthToken
 void CredentialsAgent.storeOAuthAccessToken(OAuthToken accessToken)
          Stores the OAuth Access Token accessToken.
 void JosmPreferencesCredentialAgent.storeOAuthAccessToken(OAuthToken accessToken)
          Stores the OAuth Access Token accessToken.
 void CredentialsManager.storeOAuthAccessToken(OAuthToken accessToken)
           
 



JOSM