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

play.BuiltInComponentsFromContext Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) from 2022 The Play Framework Contributors , 2011-2021 Lightbend Inc. 
 */

package play;

/**
 * This helper class provides all the built-in component dependencies by trading them for a single
 * dependency - the {@linkplain #context() application loader context}.
 */
public abstract class BuiltInComponentsFromContext extends ContextBasedBuiltInComponents {

  private final ApplicationLoader.Context context;

  public BuiltInComponentsFromContext(ApplicationLoader.Context context) {
    this.context = context;
  }

  @Override
  public ApplicationLoader.Context context() {
    return this.context;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy