All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jamonapi.http.JettyHttpMonFactory Maven / Gradle / Ivy

There is a newer version: 2.82
Show newest version
package com.jamonapi.http;

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

    private static final long serialVersionUID = 278L;

    public JettyHttpMonFactory(String labelPrefix) {
        super(labelPrefix);
    }

    @Override
    HttpMonItem createHttpMonItem(String label) {
        return new JettyHttpMonItem(label, this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy