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;
}
}