Package org.openstreetmap.josm.gui.oauth
Class TestAccessTokenTask
- java.lang.Object
-
- org.openstreetmap.josm.gui.PleaseWaitRunnable
-
- org.openstreetmap.josm.gui.oauth.TestAccessTokenTask
-
- All Implemented Interfaces:
java.lang.Runnable,ProgressMonitor.CancelListener
public class TestAccessTokenTask extends PleaseWaitRunnable
Checks whether an OSM API server can be accessed with a specific Access Token.It retrieves the user details for the user which is authorized to access the server with this token.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringapiUrlprivate booleancanceledprivate HttpClientconnectionprivate java.awt.Componentparentprivate IOAuthTokentokenOAuth2-
Fields inherited from class org.openstreetmap.josm.gui.PleaseWaitRunnable
progressMonitor
-
-
Constructor Summary
Constructors Constructor Description TestAccessTokenTask(java.awt.Component parent, java.lang.String apiUrl, IOAuthToken accessToken)Create the task
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidalertFailedAuthentication()protected voidalertFailedAuthorisation()protected voidalertFailedConnection()protected voidalertFailedSigning()protected voidalertInternalError()protected voidcancel()User pressed cancel button.protected voidfinish()Finish up the data work.private java.lang.StringgetAuthKey()protected UserInfogetUserDetails()protected java.lang.StringnormalizeApiUrl(java.lang.String url)protected voidnotifySuccess(UserInfo userInfo)protected voidrealRun()Called in the worker thread to do the actual work.protected voidsign(HttpClient con)-
Methods inherited from class org.openstreetmap.josm.gui.PleaseWaitRunnable
afterFinish, canRunInBackground, getProgressMonitor, operationCanceled, run
-
-
-
-
Field Detail
-
tokenOAuth2
private final IOAuthToken tokenOAuth2
-
canceled
private boolean canceled
-
parent
private final java.awt.Component parent
-
apiUrl
private final java.lang.String apiUrl
-
connection
private HttpClient connection
-
-
Constructor Detail
-
TestAccessTokenTask
public TestAccessTokenTask(java.awt.Component parent, java.lang.String apiUrl, IOAuthToken accessToken)
Create the task- Parameters:
parent- the parent component relative to which thePleaseWaitRunnable-Dialog is displayedapiUrl- the API URL. Must not be null.accessToken- the Access Token. Must not be null.- Since:
- 18991
-
-
Method Detail
-
cancel
protected void cancel()
Description copied from class:PleaseWaitRunnableUser pressed cancel button.- Specified by:
cancelin classPleaseWaitRunnable
-
finish
protected void finish()
Description copied from class:PleaseWaitRunnableFinish up the data work. Is guaranteed to be called if realRun is called. Finish is called in the gui thread just after the dialog disappeared.- Specified by:
finishin classPleaseWaitRunnable
-
sign
protected void sign(HttpClient con) throws OAuthException
- Throws:
OAuthException
-
normalizeApiUrl
protected java.lang.String normalizeApiUrl(java.lang.String url)
-
getUserDetails
protected UserInfo getUserDetails() throws OsmOAuthAuthorizationException, XmlParsingException, OsmTransferException
-
notifySuccess
protected void notifySuccess(UserInfo userInfo)
-
alertFailedAuthentication
protected void alertFailedAuthentication()
-
alertFailedAuthorisation
protected void alertFailedAuthorisation()
-
alertFailedConnection
protected void alertFailedConnection()
-
alertFailedSigning
protected void alertFailedSigning()
-
alertInternalError
protected void alertInternalError()
-
realRun
protected void realRun() throws org.xml.sax.SAXException, java.io.IOException, OsmTransferException
Description copied from class:PleaseWaitRunnableCalled in the worker thread to do the actual work. When any of the exception is thrown, a message box will be displayed and closeDialog is called. finish() is called in any case.- Specified by:
realRunin classPleaseWaitRunnable- Throws:
org.xml.sax.SAXException- if a SAX error occursjava.io.IOException- if an I/O error occursOsmTransferException- if a communication error with the OSM server occurs
-
getAuthKey
private java.lang.String getAuthKey()
-
-