use of com.evolveum.midpoint.ninja.impl.LogTarget in project midpoint by Evolveum.
the class Action method init.
public void init(NinjaContext context, O options) {
this.context = context;
this.options = options;
LogTarget target = getInfoLogTarget();
log = new Log(target, this.context);
this.context.setLog(log);
ConnectionOptions connection = Objects.requireNonNull(NinjaUtils.getOptions(this.context.getJc(), ConnectionOptions.class));
this.context.init(connection);
}
Aggregations