Skip to content

Commit c9898e1

Browse files
author
stephen powis
committed
code style
1 parent b1ef168 commit c9898e1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/main/java/com/darksci/pardot/api/parser/ResponseParser.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
import java.io.IOException;
44

55
/**
6-
*
6+
* Interface Parsers for API responses implement.
7+
* @param <T> The object type returned from the parser implementation.
78
*/
89
public interface ResponseParser<T> {
910

1011
/**
11-
* Abstract parseResponse method. We give you the String representation of the response, your job is
12-
* to parse into something more useful and return it!
13-
* @param responseStr The response string from the request.
12+
* The response from the request is given in String representation. Implementation should
13+
* parse into something more useful and return it!
14+
* @param responseStr The response string from the request.
1415
* @return Parsed response.
1516
* @throws IOException on parse errors.
1617
*/

0 commit comments

Comments
 (0)