File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/main/java/com/darksci/pardot/api/parser Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 33import 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 */
89public 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 */
You can’t perform that action at this time.
0 commit comments