@Override
public void run(HelloWorldConfiguration configuration,
Environment environment) throws ClassNotFoundException {
final UserDAO dao = new UserDAO(hibernateBundle.getSessionFactory());
final Client client = new JerseyClientBuilder(environment).using(configuration.getJerseyClient()).build(getName());
final ClientSecretsConfiguration clientSecrets = configuration.getClientSecrets();
environment.jersey().register(new ClientResource());
environment.jersey().register(new UserResource(dao));