Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
uhurusurfa committed Aug 31, 2018
1 parent be03197 commit 4014532
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions Server/src/main/java/org/openas2/util/HTTPUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ public static byte[] readData(InputStream inStream, OutputStream outStream, Mess
}

/**
* @param msg The message containing the
* Cleans specific headers to ensure AS2 compatibility
*
* @param hdrs Headers to be cleaned
*/
public static void cleanIdHeaders(InternetHeaders hdrs) {
// Handle the case where the AS2 ID could be encapsulated in double quotes per RFC4130
Expand Down Expand Up @@ -312,13 +314,16 @@ public static String[] readRequest(InputStream in) throws IOException {
* @param method GET, PUT, POST, DELETE, etc
* @param url
* The remote connection string
* @param HTTP
* headers to be sent
* @param paramString
* @param headers
* HTTP headers to be sent
* @param params
* Parameters for the get. Can be null.
* @param contentType
* Content-Type attribute string for the {@link paramString}. Can be
* null
* @param inputStream
* Source stream for retrieving request data
* @param options
* Any additional options for affecting request behaviour. Can be null.
* @param noChunkMaxSize
* The maximum size before chunking would need to be utilised. 0 disables check for chunking
* @return ResponseWrapper
* @throws Exception
*/
Expand Down

0 comments on commit 4014532

Please sign in to comment.