Ignore:
Timestamp:
02/13/14 11:40:02 (10 years ago)
Author:
pharms
Message:
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  
    3636/** 
    3737 * <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. 
    3940 * </p> 
    4041 *  
     
    105106 
    106107    /** 
    107      * 
     108     * <p> 
     109     * returns the sequences parsed by this parser 
     110     * </p> 
     111     *  
     112     * @return as described 
    108113     */ 
    109114    public Collection<List<Event>> getSequences() { 
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java

    r1367 r1383  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * contains convenience methods used for processing HTTP exchanges 
    2222 * </p> 
    2323 *  
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseDirHTTP.java

    r1367 r1383  
    3131 * <p> 
    3232 * Command that tries to parse all files in a folder as if they were log files generated by the 
    33  * HTMLMonitor. The result is one set of sequences for all files (not one set of sequences for each 
     33 * HTTPMonitor. The result is one set of sequences for all files (not one set of sequences for each 
    3434 * file!). 
    3535 * </p> 
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseHTTP.java

    r1367 r1383  
    2727/** 
    2828 * <p> 
    29  * Command to parse a file with sessions monitored by AutoQUESTs HTTP monitor. 
     29 * Command to parse a file with a session monitored by AutoQUESTs HTTP monitor. 
    3030 * </p> 
    3131 *  
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPEventType.java

    r1367 r1383  
    2121/** 
    2222 * <p> 
    23  * TODO comment 
     23 * the event type for HTTP events. Holds a reference to the HTTP exchange recorded by the HTTP 
     24 * monitor. 
    2425 * </p> 
    2526 *  
     
    3132    private static final long serialVersionUID = 1L; 
    3233 
    33     /** */ 
     34    /** 
     35     * <p> 
     36     * the HTTP exchange recorded by the HTTP monitor 
     37     * </p> 
     38     */ 
    3439    private HttpExchange exchange; 
    3540 
    36     /** */ 
     41    /** 
     42     * <p> 
     43     * the name of the event type as required by AutoQUEST's framework 
     44     * </p> 
     45     */ 
    3746    private String name; 
    3847 
    3948    /** 
    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 
    4154     */ 
    4255    public HTTPEventType(HttpExchange exchange) { 
     
    96109 
    97110    /** 
    98      * @return the exchange 
     111     * @return the HTTP exchange recorded by the HTTP monitor 
    99112     */ 
    100113    public HttpExchange getExchange() { 
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPTarget.java

    r1367 r1383  
    2121/** 
    2222 * <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. 
    2425 * </p> 
    2526 *  
     
    3132    private static final long serialVersionUID = 1L; 
    3233     
    33     /** */ 
     34    /** 
     35     * <p> 
     36     * the receiver address of the HTTP exchange 
     37     * </p> 
     38     */ 
    3439    private Address receiver; 
    3540 
    36     /** */ 
     41    /** 
     42     * <p> 
     43     * a string representing the receiver address of the HTTP exchange 
     44     * </p> 
     45     */ 
    3746    private String stringIdentifier; 
    3847 
    3948    /** 
    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 
    4154     */ 
    4255    public HTTPTarget(Address receiver) { 
Note: See TracChangeset for help on using the changeset viewer.