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

com.nitorcreations.nflow.jetty.spring.NflowAnnotationConfigWebApplicationContext Maven / Gradle / Ivy

The newest version!
package com.nitorcreations.nflow.jetty.spring;

import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;

public class NflowAnnotationConfigWebApplicationContext extends AnnotationConfigWebApplicationContext {
  private final ConfigurableEnvironment env;

  public NflowAnnotationConfigWebApplicationContext(ConfigurableEnvironment env) {
    this.env = env;
  }

  @Override
  protected ConfigurableEnvironment createEnvironment() {
    return env;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy