src/java/org/apache/fulcrum/yaafi/interceptor/jamon/JamonInterceptorServiceImpl.java [89:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void configure(Configuration configuration) throws ConfigurationException {
		super.configure(configuration);
		this.reportTimeout = configuration.getChild("reportTimeout").getValueAsLong(0);

		// parse the performance monitor class name
		this.performanceMonitorClassName = configuration.getChild("performanceMonitorClassName")
				.getValue(DEFAULT_PERFORMANCEMONITOR_CLASSNAME);

		// parse the report file name
		String reportFileName = configuration.getChild("reportFile").getValue("./jamon.html");
		this.reportFile = this.makeAbsoluteFile(reportFileName);

		// determine when to create the next report
		this.nextReportTimestamp = System.currentTimeMillis() + this.reportTimeout;

		// do we create a report on disposal
		this.reportOnExit = configuration.getChild("reportOnExit").getValueAsBoolean(false);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/fulcrum/yaafi/interceptor/javasimon/JavaSimonInterceptorServiceImpl.java [90:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void configure(Configuration configuration) throws ConfigurationException {
		super.configure(configuration);
		this.reportTimeout = configuration.getChild("reportTimeout").getValueAsLong(0);

		// parse the performance monitor class name
		this.performanceMonitorClassName = configuration.getChild("performanceMonitorClassName")
				.getValue(DEFAULT_PERFORMANCEMONITOR_CLASSNAME);

		// parse the report file name
		String reportFileName = configuration.getChild("reportFile").getValue("./javasimon.html");
		this.reportFile = this.makeAbsoluteFile(reportFileName);

		// determine when to create the next report
		this.nextReportTimestamp = System.currentTimeMillis() + this.reportTimeout;

		// do we create a report on disposal
		this.reportOnExit = configuration.getChild("reportOnExit").getValueAsBoolean(false);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



