Changeset 9078 in josm for trunk/src/org/openstreetmap/josm/gui/oauth
- Timestamp:
- 2015-12-02T00:05:09+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/oauth
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java
r8510 r9078 28 28 private boolean canceled; 29 29 private OAuthToken accessToken; 30 private OAuthParameters parameters;30 private final OAuthParameters parameters; 31 31 private OsmOAuthAuthorizationClient client; 32 private OAuthToken requestToken;33 private Component parent;32 private final OAuthToken requestToken; 33 private final Component parent; 34 34 35 35 /** -
trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveRequestTokenTask.java
r8510 r9078 27 27 private boolean canceled; 28 28 private OAuthToken requestToken; 29 private OAuthParameters parameters;29 private final OAuthParameters parameters; 30 30 private OsmOAuthAuthorizationClient client; 31 private Component parent;31 private final Component parent; 32 32 33 33 /** -
trunk/src/org/openstreetmap/josm/gui/oauth/TestAccessTokenTask.java
r8510 r9078 12 12 import javax.xml.parsers.DocumentBuilderFactory; 13 13 import javax.xml.parsers.ParserConfigurationException; 14 15 import oauth.signpost.OAuthConsumer;16 import oauth.signpost.exception.OAuthException;17 14 18 15 import org.openstreetmap.josm.Main; … … 33 30 import org.xml.sax.SAXException; 34 31 32 import oauth.signpost.OAuthConsumer; 33 import oauth.signpost.exception.OAuthException; 34 35 35 /** 36 36 * Checks whether an OSM API server can be accessed with a specific Access Token. … … 41 41 */ 42 42 public class TestAccessTokenTask extends PleaseWaitRunnable { 43 private OAuthToken token;44 private OAuthParameters oauthParameters;43 private final OAuthToken token; 44 private final OAuthParameters oauthParameters; 45 45 private boolean canceled; 46 private Component parent;47 private String apiUrl;46 private final Component parent; 47 private final String apiUrl; 48 48 private HttpURLConnection connection; 49 49
Note:
See TracChangeset
for help on using the changeset viewer.