Ignore:
Timestamp:
2010-03-08T09:24:03+01:00 (14 years ago)
Author:
jttt
Message:

Changes in multipolygon handling (see #4661), cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java

    r3083 r3095  
    4747    /**
    4848     * Creates a new authorisation client with default OAuth parameters
    49      * 
     49     *
    5050     */
    5151    public OsmOAuthAuthorizationClient() {
     
    5757    /**
    5858     * Creates a new authorisation client with the parameters <code>parameters</code>.
    59      * 
     59     *
    6060     * @param parameters the OAuth parameters. Must not be null.
    6161     * @throws IllegalArgumentException thrown if parameters is null
     
    7171     * Creates a new authorisation client with the parameters <code>parameters</code>
    7272     * and an already known Request Token.
    73      * 
     73     *
    7474     * @param parameters the OAuth parameters. Must not be null.
    7575     * @param requestToken the request token. Must not be null.
     
    117117     * Submits a request for a Request Token to the Request Token Endpoint Url of the OAuth Service
    118118     * Provider and replies the request token.
    119      * 
     119     *
    120120     * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
    121121     * @return the OAuth Request Token
     
    147147     * Submits a request for an Access Token to the Access Token Endpoint Url of the OAuth Service
    148148     * Provider and replies the request token.
    149      * 
     149     *
    150150     * You must have requested a Request Token using {@see #getRequestToken(ProgressMonitor)} first.
    151      * 
     151     *
    152152     * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
    153153     * @return the OAuth Access Token
     
    180180     * Builds the authorise URL for a given Request Token. Users can be redirected to this URL.
    181181     * There they can login to OSM and authorise the request.
    182      * 
     182     *
    183183     * @param requestToken  the request token
    184184     * @return  the authorise URL for this request
     
    241241    /**
    242242     * Derives the OSM login URL from the OAuth Authorization Website URL
    243      * 
     243     *
    244244     * @return the OSM login URL
    245245     * @throws OsmOAuthAuthorizationException thrown if something went wrong, in particular if the
     
    261261    /**
    262262     * Derives the OSM logout URL from the OAuth Authorization Website URL
    263      * 
     263     *
    264264     * @return the OSM logout URL
    265265     * @throws OsmOAuthAuthorizationException thrown if something went wrong, in particular if the
     
    279279     * Submits a request to the OSM website for a login form. The OSM website replies a session ID in
    280280     * a cookie.
    281      * 
     281     *
    282282     * @return the session ID
    283283     * @throws OsmOAuthAuthorizationException thrown if something went wrong
     
    460460    /**
    461461     * Automatically authorises a request token for a set of privileges.
    462      * 
     462     *
    463463     * @param requestToken the request token. Must not be null.
    464464     * @param osmUserName the OSM user name. Must not be null.
Note: See TracChangeset for help on using the changeset viewer.