Ignore:
Timestamp:
03/10/15 10:12:42 (9 years ago)
Author:
sherbold
Message:
  • added new constructor to HTTPLogParser that takes as input an already loaded properties
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java

    r1629 r1903  
    112112        urlNameMap = new Properties(); 
    113113        urlNameMap.load(urlNameMapStream); 
     114    } 
     115     
     116    /** 
     117     * <p> 
     118     * Constructor. Creates a new HTTPLogParser with a urlNameMap. 
     119     * </p> 
     120     * 
     121     * @param urlNameMapFile properties that include the logical name map 
     122     */ 
     123    public HTTPLogParser(Properties urlNameMapFile) { 
     124        this(); 
     125        urlNameMap = urlNameMapFile; 
    114126    } 
    115127 
Note: See TracChangeset for help on using the changeset viewer.