public AppInfo(App app, AppContext context) { this.appId = context.getApplicationID().toString(); this.name = context.getApplicationName().toString(); this.user = context.getUser().toString(); this.startedOn = context.getStartTime(); this.elapsedTime = Times.elapsed(this.startedOn, 0); }
@Inject AttemptsBlock(App ctx) { app = ctx; }
@Inject HsTasksBlock(App app) { this.app = app; }
@Inject FewAttemptsBlock(App ctx) { super(ctx); }
@Inject HsController(App app, Configuration conf, RequestContext ctx) { super(app, conf, ctx, "History"); }
HsControllerForTest(App app, Configuration configuration, RequestContext ctx) { super(app, configuration, ctx); }
public AttemptsBlockForTest(App ctx) { super(ctx); }
public HsTasksBlockForTest(App app) { super(app); }