Skip to content

Commit

Permalink
Merge pull request Azure#43 from JonathanGiles/dev
Browse files Browse the repository at this point in the history
Fixing JavaDoc issues
  • Loading branch information
tiffanyachen authored Jun 1, 2018
2 parents cd98607 + ae885a9 commit ec38edb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ public String doAuthenticate(String authorization, String resource, String scope
* HttpPost httppost = new HttpPost(authorization + "/oauth2/token");
*
* // Request parameters and other properties.
* List<NameValuePair> params = new ArrayList<NameValuePair>(2);
* List&lt;NameValuePair&gt; params = new ArrayList&lt;NameValuePair&gt;(2);
* params.add(new BasicNameValuePair("resource", resource));
* params.add(new BasicNameValuePair("response_type", "token"));
* params.add(new BasicNameValuePair("grant_type", "client_credentials"));
Expand All @@ -378,7 +378,7 @@ public String doAuthenticate(String authorization, String resource, String scope
*
* return reply.access_token;
* }
* /pre>
* </pre>
*
* <p>
* <b>Note: The client key must be securely stored. It's advised to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

/**
* Implements message security protocol.
* Encrypts requests & decrypts responses.
* Encrypts requests &amp; decrypts responses.
*/
public class HttpMessageSecurity {
private static final String AUTHENTICATE = "Authorization";
Expand Down

0 comments on commit ec38edb

Please sign in to comment.