Ejemplo n.º 1
0
 public ProjectSettings(
     ProjectReactor reactor,
     GlobalSettings globalSettings,
     PropertyDefinitions propertyDefinitions,
     ProjectReferentials projectReferentials,
     AnalysisMode mode) {
   super(propertyDefinitions);
   this.mode = mode;
   getEncryption()
       .setPathToSecretKey(globalSettings.getString(CoreProperties.ENCRYPTION_SECRET_KEY_PATH));
   this.globalSettings = globalSettings;
   this.projectReferentials = projectReferentials;
   init(reactor);
 }