Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.manager.servlet/src/org/eclipse/osee/framework/manager/servlet/ConfigurationServlet.java')
-rw-r--r--plugins/org.eclipse.osee.framework.manager.servlet/src/org/eclipse/osee/framework/manager/servlet/ConfigurationServlet.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.manager.servlet/src/org/eclipse/osee/framework/manager/servlet/ConfigurationServlet.java b/plugins/org.eclipse.osee.framework.manager.servlet/src/org/eclipse/osee/framework/manager/servlet/ConfigurationServlet.java
index 1ac112cf18c..e624cd3e9e7 100644
--- a/plugins/org.eclipse.osee.framework.manager.servlet/src/org/eclipse/osee/framework/manager/servlet/ConfigurationServlet.java
+++ b/plugins/org.eclipse.osee.framework.manager.servlet/src/org/eclipse/osee/framework/manager/servlet/ConfigurationServlet.java
@@ -32,6 +32,7 @@ import org.eclipse.osee.framework.core.operation.Operations;
import org.eclipse.osee.framework.core.server.IApplicationServerManager;
import org.eclipse.osee.framework.core.server.UnsecuredOseeHttpServlet;
import org.eclipse.osee.framework.core.services.IOseeCachingService;
+import org.eclipse.osee.framework.core.services.IdentityService;
import org.eclipse.osee.framework.core.translation.IDataTranslationService;
import org.eclipse.osee.framework.database.IOseeDatabaseService;
import org.eclipse.osee.framework.jdk.core.util.Lib;
@@ -50,13 +51,15 @@ public class ConfigurationServlet extends UnsecuredOseeHttpServlet {
private final IOseeCachingService cachingService;
private final IOseeBranchService branchService;
private final IApplicationServerManager appServerService;
+ private final IdentityService identityService;
- public ConfigurationServlet(IApplicationServerManager appServerService, IDataTranslationService translationService, IOseeDatabaseService databaseService, IOseeCachingService cachingService, IOseeBranchService branchService) {
+ public ConfigurationServlet(IApplicationServerManager appServerService, IDataTranslationService translationService, IOseeDatabaseService databaseService, IOseeCachingService cachingService, IOseeBranchService branchService, IdentityService identityService) {
this.translationService = translationService;
this.databaseService = databaseService;
this.branchService = branchService;
this.cachingService = cachingService;
this.appServerService = appServerService;
+ this.identityService = identityService;
}
@Override
@@ -94,7 +97,7 @@ public class ConfigurationServlet extends UnsecuredOseeHttpServlet {
IOseeSchemaProvider schemaProvider = new OseeSchemaProvider();
IOperation operation =
new DatastoreInitOperation(appServerService, databaseService, cachingService, branchService,
- schemaProvider, options);
+ schemaProvider, options, identityService);
Operations.executeWorkAndCheckStatus(operation, new LogProgressMonitor());
} catch (Exception ex) {
String message = String.format("Datastore Initialization: [%s]\n%s", response.toString(), ex.toString());

Back to the top