JettyHttpMonFactory.java :  » Profiler » JAMon » com » jamonapi » http » Java Open Source

Java Open Source » Profiler » JAMon 
JAMon » com » jamonapi » http » JettyHttpMonFactory.java
package com.jamonapi.http;

/** 
 * Factory used in the JAMonJettyHandler.  Usually this need not be used directly, but via JAMonJettyHandler.
 * @author steve souza
 *
 */
public class JettyHttpMonFactory extends HttpMonFactory {

    public JettyHttpMonFactory(String labelPrefix) {
        super(labelPrefix);
    }
    
    HttpMonItem createHttpMonItem(String label) {
        return new JettyHttpMonItem(label, this);
        
    }
    
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.