[Java][okhttp-gson] fix java doc for okhttp-gson (#3077)

* fix java doc for okhttp-gson

* add ci test for javadoc

* fix return type for java doc

* fix warning/error with javadoc

* fix error/warning in javadoc

* fix 2 warnings related to docstring

* remove trailing space for okhttp tmeplate
This commit is contained in:
wing328
2016-06-09 00:47:49 +08:00
parent baed578010
commit 691aa53d5a
57 changed files with 7494 additions and 6514 deletions

View File

@@ -6,6 +6,11 @@ import java.util.Map;
import java.util.List;
public interface Authentication {
/** Apply authentication settings to header and query params. */
void applyToParams(List<Pair> queryParams, Map<String, String> headerParams);
/**
* Apply authentication settings to header and query params.
*
* @param queryParams List of query parameters
* @param headerParams Map of header parameters
*/
void applyToParams(List<Pair> queryParams, Map<String, String> headerParams);
}