Changeset 1383 for trunk/autoquest-plugin-http/src
- Timestamp:
- 02/13/14 11:40:02 (11 years ago)
- Location:
- trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java
r1367 r1383 36 36 /** 37 37 * <p> 38 * TODO comment 38 * Parser for HTTP Monitor logs. Uses JAXB for parsing and is therefore quite simple. For each 39 * exchange in the log, it creates an appropriate event. 39 40 * </p> 40 41 * … … 105 106 106 107 /** 107 * 108 * <p> 109 * returns the sequences parsed by this parser 110 * </p> 111 * 112 * @return as described 108 113 */ 109 114 public Collection<List<Event>> getSequences() { -
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java
r1367 r1383 19 19 /** 20 20 * <p> 21 * TODO comment21 * contains convenience methods used for processing HTTP exchanges 22 22 * </p> 23 23 * -
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseDirHTTP.java
r1367 r1383 31 31 * <p> 32 32 * Command that tries to parse all files in a folder as if they were log files generated by the 33 * HT MLMonitor. The result is one set of sequences for all files (not one set of sequences for each33 * HTTPMonitor. The result is one set of sequences for all files (not one set of sequences for each 34 34 * file!). 35 35 * </p> -
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseHTTP.java
r1367 r1383 27 27 /** 28 28 * <p> 29 * Command to parse a file with sessionsmonitored by AutoQUESTs HTTP monitor.29 * Command to parse a file with a session monitored by AutoQUESTs HTTP monitor. 30 30 * </p> 31 31 * -
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPEventType.java
r1367 r1383 21 21 /** 22 22 * <p> 23 * TODO comment 23 * the event type for HTTP events. Holds a reference to the HTTP exchange recorded by the HTTP 24 * monitor. 24 25 * </p> 25 26 * … … 31 32 private static final long serialVersionUID = 1L; 32 33 33 /** */ 34 /** 35 * <p> 36 * the HTTP exchange recorded by the HTTP monitor 37 * </p> 38 */ 34 39 private HttpExchange exchange; 35 40 36 /** */ 41 /** 42 * <p> 43 * the name of the event type as required by AutoQUEST's framework 44 * </p> 45 */ 37 46 private String name; 38 47 39 48 /** 40 * 49 * <p> 50 * initializes this event with the represented HTTP exchange 51 * </p> 52 * 53 * @param exchange the HTTP exchange recorded by the HTTP monitor 41 54 */ 42 55 public HTTPEventType(HttpExchange exchange) { … … 96 109 97 110 /** 98 * @return the exchange111 * @return the HTTP exchange recorded by the HTTP monitor 99 112 */ 100 113 public HttpExchange getExchange() { -
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPTarget.java
r1367 r1383 21 21 /** 22 22 * <p> 23 * TODO comment 23 * the event target for HTTP events. Holds a reference to the receiver address of the HTTP exchange 24 * recorded by the HTTP monitor. 24 25 * </p> 25 26 * … … 31 32 private static final long serialVersionUID = 1L; 32 33 33 /** */ 34 /** 35 * <p> 36 * the receiver address of the HTTP exchange 37 * </p> 38 */ 34 39 private Address receiver; 35 40 36 /** */ 41 /** 42 * <p> 43 * a string representing the receiver address of the HTTP exchange 44 * </p> 45 */ 37 46 private String stringIdentifier; 38 47 39 48 /** 40 * 49 * <p> 50 * initializes the target with the receiver address of the HTTP exchange 51 * </p> 52 * 53 * @param receiver the receiver address of the HTTP exchange 41 54 */ 42 55 public HTTPTarget(Address receiver) {
Note: See TracChangeset
for help on using the changeset viewer.