io.github.factoryfx.jetty.builder.SimpleJettyServerBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jettyFactory Show documentation
Show all versions of jettyFactory Show documentation
factoryfx dependency injection framework
The newest version!
package io.github.factoryfx.jetty.builder;
import io.github.factoryfx.factory.FactoryBase;
import io.github.factoryfx.factory.builder.*;
import io.github.factoryfx.jetty.*;
/**
* simplified constructor for JettyServerFactory as root
*/
public class SimpleJettyServerBuilder> extends JettyServerBuilder>{
public SimpleJettyServerBuilder(){
super(new FactoryTemplateId<>(null, JettyServerFactory.class), JettyServerFactory::new);
}
}