Skip to content

Commit

Permalink
Fixing ModelInterationService bean wiring
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Oct 7, 2015
1 parent 52352c3 commit 62a89e1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010-2013 Evolveum
* Copyright (c) 2010-2015 Evolveum
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -94,27 +94,40 @@ public abstract class PageBase extends PageTemplate {

@SpringBean(name = "modelController")
private ScriptingService scriptingService;

@SpringBean(name = "modelController")
private ModelService modelService;

@SpringBean(name = "modelInteractionService")
private ModelInteractionService modelInteractionService;

@SpringBean(name = "modelController")
private TaskService taskService;

@SpringBean(name = "modelDiagController")
private ModelDiagnosticService modelDiagnosticService;

@SpringBean(name = "taskManager")
private TaskManager taskManager;

@SpringBean(name = "modelController")
private WorkflowService workflowService;

@SpringBean(name = "workflowManager")
private WorkflowManager workflowManager;

@SpringBean(name = "midpointConfiguration")
private MidpointConfiguration midpointConfiguration;

@SpringBean(name = "reportManager")
private ReportManager reportManager;

@SpringBean(name = "certificationManager")
private CertificationManager certificationManager;

@SpringBean(name = "accessDecisionManager")
private SecurityEnforcer securityEnforcer;

@SpringBean
private MidpointFormValidatorRegistry formValidatorRegistry;

Expand Down
Expand Up @@ -104,7 +104,7 @@
* @author semancik
*
*/
@Component
@Component("modelInteractionService")
public class ModelInterationServiceImpl implements ModelInteractionService {

private static final Trace LOGGER = TraceManager.getTrace(ModelInterationServiceImpl.class);
Expand Down

0 comments on commit 62a89e1

Please sign in to comment.