
com.yammer.dropwizard.Service Maven / Gradle / Ivy
package com.yammer.dropwizard;
import com.yammer.dropwizard.config.Configuration;
import com.yammer.dropwizard.bundles.JavaBundle;
/**
* The default Java service class. Extend this to write your own service.
*
* @param the type of configuration class to use
* @see Configuration
*/
public abstract class Service extends AbstractService {
protected Service(String name) {
super(name);
addBundle(new JavaBundle());
}
@Override
protected final void subclassServiceInsteadOfThis() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy