1 /*****************************************************************************
5 * Creation date 02.10.2012
6 * @author Author: Maria KRUCHININA
8 *****************************************************************************/
10 package org.splat.service;
12 import java.io.IOException;
13 import java.text.DecimalFormat;
14 import java.text.SimpleDateFormat;
15 import java.util.Calendar;
16 import java.util.Collections;
17 import java.util.Date;
18 import java.util.Iterator;
19 import java.util.List;
23 import org.hibernate.criterion.Restrictions;
24 import org.splat.dal.bo.kernel.Relation;
25 import org.splat.dal.bo.kernel.User;
26 import org.splat.dal.bo.som.ActorRelation;
27 import org.splat.dal.bo.som.ContributorRelation;
28 import org.splat.dal.bo.som.DescriptionAttribute;
29 import org.splat.dal.bo.som.DocumentType;
30 import org.splat.dal.bo.som.IDBuilder;
31 import org.splat.dal.bo.som.KnowledgeElement;
32 import org.splat.dal.bo.som.ProgressState;
33 import org.splat.dal.bo.som.Publication;
34 import org.splat.dal.bo.som.Scenario;
35 import org.splat.dal.bo.som.SimulationContext;
36 import org.splat.dal.bo.som.Study;
37 import org.splat.dal.bo.som.ValidationCycle;
38 import org.splat.dal.bo.som.ValidationCycleRelation;
39 import org.splat.dal.bo.som.ValidationStep;
40 import org.splat.dal.bo.som.Visibility;
41 import org.splat.dal.bo.som.Study.Properties;
42 import org.splat.dal.bo.som.ValidationCycle.Actor;
43 import org.splat.dal.dao.som.IDBuilderDAO;
44 import org.splat.dal.dao.som.ScenarioDAO;
45 import org.splat.dal.dao.som.StudyDAO;
46 import org.splat.dal.dao.som.ValidationCycleDAO;
47 import org.splat.kernel.InvalidPropertyException;
48 import org.splat.kernel.MissedPropertyException;
49 import org.splat.kernel.MultiplyDefinedException;
50 import org.splat.log.AppLogger;
51 import org.splat.service.technical.IndexService;
52 import org.splat.service.technical.ProjectSettingsService;
53 import org.splat.service.technical.ProjectSettingsServiceImpl;
54 import org.splat.som.Revision;
55 import org.springframework.transaction.annotation.Transactional;
58 * This class defines all methods for creation, modification the study.
60 * @author Maria KRUCHININA
63 public class StudyServiceImpl implements StudyService {
66 * logger for the service.
68 public final static AppLogger LOG = AppLogger
69 .getLogger(StudyServiceImpl.class);
72 * Injected index service.
74 private IndexService _indexService;
77 * Injected step service.
79 private StepService _stepService;
82 * Injected project service.
84 private ProjectSettingsService _projectSettingsService;
87 * Injected project element service.
89 private ProjectElementService _projectElementService;
94 private StudyDAO _studyDAO;
97 * Injected scenario DAO.
99 private ScenarioDAO _scenarioDAO;
102 * Injected validation cycle DAO.
104 private ValidationCycleDAO _validationCycleDAO;
107 * Injected IDBuilder DAO.
109 private IDBuilderDAO _iDBuilderDAO;
112 * Injected document type service.
114 private DocumentTypeService _documentTypeService;
117 * Injected user service.
119 private UserService _userService;
124 * @see org.splat.service.StudyService#selectStudy(long)
127 public Study selectStudy(final long index) {
128 Study result = getStudyDAO().get(index);
129 loadWorkflow(result);
134 * Get study by its reference.
137 * the study reference
138 * @return found study or null
140 @Transactional(readOnly = true)
141 public Study selectStudy(final String refid) {
142 Study result = getStudyDAO().findByCriteria(
143 Restrictions.eq("sid", refid));
144 loadWorkflow(result);
151 * @see org.splat.service.StudyService#createStudy(org.splat.dal.bo.som.Study.Properties)
154 public Study createStudy(final Study.Properties sprop)
155 throws MissedPropertyException, InvalidPropertyException,
156 MultiplyDefinedException {
157 sprop.setReference(getProjectSettings().getReferencePattern());
158 Study study = new Study(sprop);
160 buildReference(study);
161 getStudyDAO().create(study);
163 IndexService lucin = getIndex();
165 } catch (IOException error) {
166 LOG.error("Unable to index the study '" + study.getIndex()
167 + "', reason:", error);
168 // Continue and try to index later
176 * @see org.splat.service.StudyService#addProjectContext(org.splat.dal.bo.som.Study, org.splat.dal.bo.som.SimulationContext.Properties)
179 public SimulationContext addProjectContext(final Study aStudy,
180 final SimulationContext.Properties cprop)
181 throws MissedPropertyException, InvalidPropertyException,
182 MultiplyDefinedException {
183 SimulationContext added = getStepService().addSimulationContext(
184 getProjectElementService().getFirstStep(aStudy), cprop);
192 * @see org.splat.service.StudyService#addProjectContext(org.splat.dal.bo.som.Study, org.splat.dal.bo.som.SimulationContext)
195 public SimulationContext addProjectContext(final Study aStudy,
196 final SimulationContext context) {
197 SimulationContext added = getStepService().addSimulationContext(
198 getProjectElementService().getFirstStep(aStudy), context);
206 * @see org.splat.service.StudyService#addContributor(org.splat.dal.bo.som.Study, org.splat.dal.bo.kernel.User)
208 public boolean addContributor(final Study aStudy, final User user) {
209 List<User> contributor = getModifiableContributors(aStudy); // Initializes contributor
210 for (Iterator<User> i = contributor.iterator(); i.hasNext();) {
211 User present = i.next();
212 if (present.equals(user)) {
216 boolean absent = getModifiableActors(aStudy).add(user); // User may already be a reviewer or an approver
218 aStudy.addRelation(new ContributorRelation(aStudy, user));
220 update(aStudy); // Else, useless to re-index the study
222 contributor.add(user);
227 * Moves this study from the Public to the Reference area of the repository. For being moved to the Reference area, the study must
228 * previously be approved.
232 * @return true if the move succeeded.
233 * @see #moveToPublic()
235 * @see Publication#approve(Date)
237 public boolean moveToReference(final Study aStudy) {
238 if (aStudy.getProgressState() != ProgressState.APPROVED) {
241 if (aStudy.getVisibility() != Visibility.PUBLIC) {
245 aStudy.setVisibility(Visibility.REFERENCE);
246 if (update(aStudy)) {
247 return updateKnowledgeElementsIndex(aStudy); // If fails, the database roll-back is under responsibility of the caller
255 * @see org.splat.service.StudyService#update(org.splat.dal.bo.som.Study, org.splat.dal.bo.som.Study.Properties)
257 public boolean update(final Study aStudy, final Properties sprop)
258 throws InvalidPropertyException {
259 if (sprop.getTitle() != null) {
260 aStudy.setTitle(sprop.getTitle());
262 if (sprop.getSummary() != null) {
263 aStudy.setAttribute(new DescriptionAttribute(aStudy, sprop
266 // TODO: To be completed
267 return update(aStudy);
271 * Check if the document is published in the study.
277 * @return true if the document is published in the study
279 /* private boolean publishes(final Study aStudy, final Document doc) {
280 if (!aStudy.publishes(doc)) {
281 Scenario[] scene = aStudy.getScenarii();
282 for (int i = 0; i < scene.length; i++) {
283 if (scene[i].publishes(doc)) {
294 * @see org.splat.service.StudyService#removeContributor(org.splat.dal.bo.som.Study, org.splat.dal.bo.kernel.User[])
296 public boolean removeContributor(final Study aStudy, final User... users) {
297 List<User> contributor = getModifiableContributors(aStudy); // Initializes contributor
298 Boolean done = false;
299 for (int i = 0; i < users.length; i++) {
300 User user = users[i];
301 for (Iterator<User> j = contributor.iterator(); j.hasNext();) {
302 User present = j.next();
303 if (!present.equals(user)) {
307 aStudy.removeRelation(ContributorRelation.class, user);
308 j.remove(); // Updates the contributor shortcut
322 * @see org.splat.service.StudyService#removeProjectContext(org.splat.dal.bo.som.Study, org.splat.dal.bo.som.SimulationContext)
324 public boolean removeProjectContext(final Study aStudy,
325 final SimulationContext context) {
326 boolean done = getStepService().removeSimulationContext(
327 getProjectElementService().getFirstStep(aStudy), context);
335 * @see org.splat.service.StudyService#setValidationCycle(org.splat.dal.bo.som.Study, org.splat.dal.bo.som.DocumentType,
336 * org.splat.dal.bo.som.ValidationCycle.Properties)
339 public void setValidationCycle(final Study aStudyDTO, final DocumentType type,
340 final ValidationCycle.Properties vprop) {
341 Map<String, ValidationCycle> validactor = aStudyDTO.getValidationCycles();
342 if (validactor == null) {
343 setShortCuts(aStudyDTO); // Initializes validactor and actor
346 Study aStudy = selectStudy(aStudyDTO.getIndex());
348 String cname = type.getName();
349 ValidationCycle cycle = validactor.get(cname);
351 if (cycle != null && cycle.isAssigned()) {
352 resetActors(cycle, vprop);
355 cycle = new ValidationCycle(aStudy, vprop.setDocumentType(type));
357 getValidationCycleDAO().create(cycle); // RKV
359 ValidationCycleRelation link = cycle.getContext();
360 // RKV: aStudy.addRelation(link);
361 aStudyDTO.getAllRelations().add(link); // RKV
363 validactor.put(cname, link.getTo()); // Replaces the cycle if exists as default,
364 } catch (Exception error) {
365 LOG.error("Unable to re-index Knowledge Elements, reason:",
370 resetActorsShortCut(aStudyDTO);
371 update(aStudy); // Re-index the study, just in case
375 * Demotes this study from In-Check to In-Draft then In-Work states. This function is called internally when demoting the final result
376 * document of the study.
380 * @return true if the demotion succeeded.
382 public boolean demote(final Study aStudy) {
383 if (aStudy.getProgressState() == ProgressState.inCHECK) {
384 aStudy.setProgressState(ProgressState.inDRAFT);
385 } else if (aStudy.getProgressState() == ProgressState.inDRAFT) {
386 aStudy.setProgressState(ProgressState.inWORK);
390 return update(aStudy);
396 * @see org.splat.service.StudyService#generateLocalIndex(org.splat.dal.bo.som.Study)
399 public int generateLocalIndex(final Study aStudy) {
400 aStudy.setLastLocalIndex(aStudy.getLastLocalIndex() + 1);
401 getStudyDAO().update(aStudy);
402 return aStudy.getLastLocalIndex();
406 * Promotes this study from In-Work to In-Draft then In-Check and APPROVED states. This function is called internally when promoting the
407 * final result document of the study.
411 * @return true if the demotion succeeded.
413 public boolean promote(final Study aStudy) {
414 if (aStudy.getProgressState() == ProgressState.inWORK) {
415 aStudy.setProgressState(ProgressState.inDRAFT);
416 } else if (aStudy.getProgressState() == ProgressState.inDRAFT) {
417 aStudy.setProgressState(ProgressState.inCHECK);
418 Revision myvers = new Revision(aStudy.getVersion());
419 if (myvers.isMinor()) {
420 aStudy.setVersion(myvers.incrementAs(aStudy.getProgressState())
423 } else if (aStudy.getProgressState() == ProgressState.inCHECK) {
424 aStudy.setProgressState(ProgressState.APPROVED);
429 return update(aStudy);
433 * Moves this study from the Private to the Public area of the repository.
437 * @return true if the move succeeded.
440 public boolean moveToPublic(final Study aStudy) {
441 boolean isOk = false;
442 if (aStudy.getVisibility() == Visibility.PRIVATE) {
443 aStudy.setVisibility(Visibility.PUBLIC);
444 if (update(aStudy)) {
445 isOk = updateKnowledgeElementsIndex(aStudy); // If fails, the database roll-back is under responsibility of the caller
452 * Update a study in the database.
455 * the study to update
456 * @return true if the study is updated successfully
459 private boolean update(final Study aStudy) {
460 boolean isOk = false;
462 getStudyDAO().update(aStudy); // Update of relational base
463 setShortCuts(aStudy); // RKV: initialize transient actors set
464 getIndex().update(aStudy); // Update of Lucene index
466 } catch (Exception e) {
467 LOG.error("STD-000001", e, aStudy.getIndex(), e.getMessage());
473 * Build reference for the study. The reference of the study is stored as a new reference pattern (IDBuilder).
477 * @return true if reference building is succeded
480 private boolean buildReference(final Study aStudy) {
481 String pattern = aStudy.getReference(); // The study being supposed just created, its reference is the reference pattern
482 IDBuilder tool = selectIDBuilder(aStudy.getDate());
484 tool = new IDBuilder(aStudy.getDate());
485 getIDBuilderDAO().create(tool);
487 aStudy.setReference(buildReference(tool, pattern, aStudy));
492 * Build reference for the study. The reference of the study is stored as a new reference pattern (IDBuilder).
499 * the reference pattern
500 * @return true if reference building is succeded
503 public String buildReference(final IDBuilder aBuilder,
504 final String pattern, final Study study) {
505 char[] format = pattern.toCharArray();
506 char[] ref = new char[80]; // Better evaluate the length of the generated string
507 int next = aBuilder.getBase() + 1;
510 for (int i = 0; i < format.length; i++) {
512 // Insertion of attribute values
513 if (format[i] == '%') {
516 if (format[i] == 'y') { // Insertion of year in format 2 (e.g. 09) or 4 (e.g. 2009) digits
518 while (format[i] == 'y') {
520 if (i == format.length) {
524 SimpleDateFormat tostring = new SimpleDateFormat("yyyy"); //RKV: NOPMD: TODO: Use locale here?
525 String year = tostring.format(study.getDate());
526 year = year.substring(4 - (i - n), 4); // 4-(i-n) must be equal to either 0 or 2
527 for (int j = 0; j < year.length(); j++) {
528 ref[count] = year.charAt(j);
531 i -= 1; // Back to the last 'y' character
532 } else if (format[i] == '0') { // Insertion of the index
534 while (format[i] == '0') {
536 if (i == format.length) {
540 DecimalFormat tostring = new DecimalFormat(pattern
542 String number = tostring.format(next);
543 for (int j = 0; j < number.length(); j++) {
544 ref[count] = number.charAt(j);
547 i -= 1; // Back to the last '0' character
549 // Keep the character
551 ref[count] = format[i];
555 // Incrementation of the number of study
556 aBuilder.setBase(next);
557 getIDBuilderDAO().update(aBuilder);
558 return String.copyValueOf(ref, 0, count);
562 * Find an id builder by date.
566 * @return found id builder
568 private IDBuilder selectIDBuilder(final Date date) {
569 Calendar aDate = Calendar.getInstance();
571 return getIDBuilderDAO().findByCriteria(
572 Restrictions.eq("cycle", aDate.get(Calendar.YEAR)));
576 * Fill transient collection ModifiableActors of the study.
581 private void resetActorsShortCut(final Study aStudy) {
582 getModifiableActors(aStudy).clear();
583 // Get all actors involved in validation cycles
584 for (Iterator<ValidationCycle> i = aStudy.getValidationCycles()
585 .values().iterator(); i.hasNext();) {
586 ValidationCycle cycle = i.next();
587 User[] user = cycle.getAllActors();
588 for (int j = 0; j < user.length; j++) {
589 getModifiableActors(aStudy).add(user[j]);
592 // Get all other actors
593 for (Iterator<Relation> i = aStudy.getAllRelations().iterator(); i
595 Relation link = i.next();
596 Class<?> kindof = link.getClass().getSuperclass();
597 if (!kindof.equals(ActorRelation.class)) {
600 getModifiableActors(aStudy).add(((ActorRelation) link).getTo());
605 * Update lucene index for the study knowledge elements.
609 * @return true if reindexing succeeded
611 private boolean updateKnowledgeElementsIndex(final Study aStudy) {
612 boolean isOk = false;
614 IndexService lucin = getIndex();
616 for (Iterator<Scenario> i = aStudy.getScenariiList().iterator(); i
618 Scenario scene = i.next();
619 for (Iterator<KnowledgeElement> j = scene
620 .getAllKnowledgeElements().iterator(); j.hasNext();) {
621 KnowledgeElement kelm = j.next();
626 } catch (Exception error) {
627 LOG.error("Unable to re-index Knowledge Elements, reason:",
634 * Get lucene index service. Create a lucene index if it does not exist.
636 * @return index service
637 * @throws IOException
638 * if error occurs during lucene index creation
640 private IndexService getIndex() throws IOException {
641 IndexService lucin = getIndexService();
642 if (!lucin.exists()) {
643 lucin.create(); // Happens when re-indexing all studies
649 * Create a new validation cycle for documents of the given study.
654 * the cycle description
655 * @return the new validation cycle
657 protected ValidationCycle createValidationCycle(
659 final ProjectSettingsServiceImpl.ProjectSettingsValidationCycle cycle) {
660 Actor[] actype = cycle.getActorTypes();
661 User.Properties uprop = new User.Properties();
663 ValidationCycle aValidationCycle = new ValidationCycle();
664 aValidationCycle.setDocumentType(getDocumentTypeService().selectType(
665 cycle.getName())); // Null in case of default validation cycle
666 // context = new ValidationCycleRelation(from, vprop);
667 // RKV aValidationCycle.context = null; // Validation cycle defined in the workflow
668 for (int i = 0; i < actype.length; i++) {
670 if (actype[i] != null) {
672 if (actype[i] == Actor.manager) {
673 actor = from.getAuthor();
674 } else if (actype[i] == Actor.Nx1) {
675 List<User> manager = getUserService().selectUsersWhere(
676 uprop.setOrganizationName("Nx1"));
677 if (manager.size() == 1) {
678 actor = manager.get(0);
680 } else if (actype[i] == Actor.Nx2) {
681 List<User> manager = getUserService().selectUsersWhere(
682 uprop.setOrganizationName("Nx2"));
683 if (manager.size() == 1) {
684 actor = manager.get(0);
686 } else { /* Actor.customer */
687 actor = from.getAuthor();
688 // TODO: Get the customer of the study, if exists
690 } catch (Exception e) { // Should not happen
695 aValidationCycle.setReviewer(actor);
697 aValidationCycle.setApprover(actor);
699 aValidationCycle.setSignatory(actor);
702 return aValidationCycle;
706 * Remove a validation step from the validation cycle.
708 * @param aValidationCycle
709 * the validation cycle
711 * the validation step to remove
714 protected void remove(final ValidationCycle aValidationCycle,
715 final ValidationStep step) {
716 if (step == ValidationStep.REVIEW) {
717 aValidationCycle.setReviewer(null);
718 } else if (step == ValidationStep.APPROVAL) {
719 aValidationCycle.setApprover(null);
720 } else if (step == ValidationStep.ACCEPTANCE
721 || step == ValidationStep.REFUSAL) {
722 aValidationCycle.setSignatory(null);
724 if (aValidationCycle.isSaved()) {
725 getValidationCycleDAO().update(aValidationCycle);
730 * Reset actors for the validation cycle.
732 * @param aValidationCycle
733 * the validation cycle to update
735 * new validation cycle properties containing new actors
738 public void resetActors(final ValidationCycle aValidationCycle,
739 final ValidationCycle.Properties vprop) {
740 aValidationCycle.setPublisher(vprop.getPublisher()); // May be null
741 aValidationCycle.setReviewer(vprop.getReviewer()); // May be null
742 aValidationCycle.setApprover(vprop.getApprover()); // May be null
743 aValidationCycle.setSignatory(vprop.getSignatory()); // May be null
744 if (aValidationCycle.isSaved()) {
745 getValidationCycleDAO().update(aValidationCycle);
750 * Set actor for the given validation cycle and validation step.
752 * @param aValidationCycle
753 * the validation cycle
755 * the validation step
760 protected void setActor(final ValidationCycle aValidationCycle,
761 final ValidationStep step, final User actor) {
762 if (step == ValidationStep.PROMOTION) {
763 aValidationCycle.setPublisher(actor);
764 } else if (step == ValidationStep.REVIEW) {
765 aValidationCycle.setReviewer(actor);
766 } else if (step == ValidationStep.APPROVAL) {
767 aValidationCycle.setApprover(actor);
768 } else if (step == ValidationStep.ACCEPTANCE
769 || step == ValidationStep.REFUSAL) {
770 aValidationCycle.setSignatory(actor);
772 if (aValidationCycle.isSaved()) {
773 getValidationCycleDAO().update(aValidationCycle);
778 * Returns all actors of this study other than the author, including contributors, reviewers and approvers.
782 * @return the actors of this study
783 * @see #hasActor(User)
785 public Set<User> getActors(final Study aStudy) {
786 if (aStudy.getActor() == null) {
787 setShortCuts(aStudy);
789 return Collections.unmodifiableSet(aStudy.getActor());
793 * Returns all actors of this study other than the author, including contributors, reviewers and approvers.
797 * @return the modifiable set of actors of this study
798 * @see #hasActor(User)
800 public Set<User> getModifiableActors(final Study aStudy) {
801 if (aStudy.getActor() == null) {
802 setShortCuts(aStudy);
804 return aStudy.getActor();
808 * Returns unmodifiable initialized transient list of contributors of this study.
812 * @return the unmodifiable not null transient list of contributors of this study
814 public List<User> getContributors(final Study aStudy) {
815 if (aStudy.getContributor() == null) {
816 setShortCuts(aStudy);
818 return Collections.unmodifiableList(aStudy.getContributor()); // May be empty
822 * Returns modifiable initialized transient list of contributors of this study.
826 * @return the modifiable not null transient list of contributors of this study
828 public List<User> getModifiableContributors(final Study aStudy) {
829 if (aStudy.getContributor() == null) {
830 setShortCuts(aStudy);
832 return aStudy.getContributor(); // May be empty
836 * Returns the validation cycle of the given document type.
841 * the document type being subject of validation
842 * @return the validation cycle of the document, or null if not defined.
844 public ValidationCycle getValidationCycleOf(final Study aStudy,
845 final DocumentType type) {
846 if (aStudy.getValidationCycles() == null) {
847 setShortCuts(aStudy);
849 ValidationCycle result = aStudy.getValidationCycles().get(
851 if (result == null) {
852 if (type.isStepResult()) {
853 result = aStudy.getValidationCycles().get("default"); // "default" validation cycle defined in the configuration, if exist
855 if (result == null) {
856 result = aStudy.getValidationCycles().get("built-in");
863 * Checks if the given user is actor of this study. Actors include contributors, reviewers and approvers.
868 * the user to look for
869 * @return true if the given user is actor of this study.
872 public boolean hasActor(final Study aStudy, final User user) {
876 for (Iterator<User> i = getActors(aStudy).iterator(); i.hasNext();) {
877 User involved = i.next();
878 if (involved.equals(user)) {
886 * Checks if the given user participates to this study. The Study staff includes the author and contributors.
891 * the user to look for
892 * @return true if the given user is actor of this study.
893 * @see #getContributors()
895 public boolean isStaffedBy(final Study aStudy, final User user) {
899 if (aStudy == null) {
902 if (aStudy.getAuthor() == null) {
905 if (aStudy.getAuthor().equals(user)) {
908 for (Iterator<User> i = getContributors(aStudy).iterator(); i.hasNext();) {
909 if (i.next().equals(user)) {
917 * Initialize shortcuts of the study as its transient collections.
922 public void loadWorkflow(final Study aStudy) {
923 setShortCuts(aStudy);
927 * Initialize shortcuts of the study as its transient collections.
932 public void setShortCuts(final Study aStudy) {
933 aStudy.getContributor().clear();
934 aStudy.getValidationCycles().clear();
935 aStudy.getActor().clear();
937 // Get the contributors
938 for (Iterator<Relation> i = aStudy.getRelations(
939 ContributorRelation.class).iterator(); i.hasNext();) {
940 ContributorRelation link = (ContributorRelation) i.next();
941 aStudy.getContributor().add(link.getTo());
943 // Get the validation cycles specific to this study
944 for (Iterator<Relation> i = aStudy.getRelations(
945 ValidationCycleRelation.class).iterator(); i.hasNext();) {
946 ValidationCycleRelation link = (ValidationCycleRelation) i.next();
947 aStudy.getValidationCycles().put(link.getDocumentType().getName(),
948 link.getTo()); // The associated document type is necessarily not null in this
951 // Get the validation cycles coming from the configured workflow and not overridden in this study
952 for (Iterator<ProjectSettingsServiceImpl.ProjectSettingsValidationCycle> i = getProjectSettings()
953 .getAllValidationCycles().iterator(); i.hasNext();) {
954 ProjectSettingsServiceImpl.ProjectSettingsValidationCycle cycle = i
956 String type = cycle.getName();
957 if (!aStudy.getValidationCycles().containsKey(type)) {
958 aStudy.getValidationCycles().put(type,
959 createValidationCycle(aStudy, cycle));
962 // Get all corresponding actors
963 for (Iterator<ValidationCycle> i = aStudy.getValidationCycles()
964 .values().iterator(); i.hasNext();) {
965 ValidationCycle cycle = i.next();
966 User[] user = cycle.getAllActors();
967 for (int j = 0; j < user.length; j++) {
968 aStudy.getActor().add(user[j]);
971 // Get all other actors
972 for (Iterator<Relation> i = aStudy.getAllRelations().iterator(); i
974 Relation link = i.next();
975 Class<?> kindof = link.getClass().getSuperclass();
976 if (!kindof.equals(ActorRelation.class)) {
979 aStudy.getActor().add(((ActorRelation) link).getTo());
984 * Get project settings.
986 * @return Project settings service
988 private ProjectSettingsService getProjectSettings() {
989 return _projectSettingsService;
993 * Set project settings service.
995 * @param projectSettingsService
996 * project settings service
998 public void setProjectSettings(
999 final ProjectSettingsService projectSettingsService) {
1000 _projectSettingsService = projectSettingsService;
1004 * Get the projectElementService.
1006 * @return the projectElementService
1008 public ProjectElementService getProjectElementService() {
1009 return _projectElementService;
1013 * Set the projectElementService.
1015 * @param projectElementService
1016 * the projectElementService to set
1018 public void setProjectElementService(
1019 final ProjectElementService projectElementService) {
1020 _projectElementService = projectElementService;
1024 * Get the stepService.
1026 * @return the stepService
1028 public StepService getStepService() {
1029 return _stepService;
1033 * Set the stepService.
1035 * @param stepService
1036 * the stepService to set
1038 public void setStepService(final StepService stepService) {
1039 _stepService = stepService;
1043 * Get the indexService.
1045 * @return the indexService
1047 public IndexService getIndexService() {
1048 return _indexService;
1052 * Set the indexService.
1054 * @param indexService
1055 * the indexService to set
1057 public void setIndexService(final IndexService indexService) {
1058 _indexService = indexService;
1064 * @return the studyDAO
1066 public StudyDAO getStudyDAO() {
1074 * the studyDAO to set
1076 public void setStudyDAO(final StudyDAO studyDAO) {
1077 _studyDAO = studyDAO;
1081 * Get the iDBuilderDAO.
1083 * @return the iDBuilderDAO
1085 public IDBuilderDAO getIDBuilderDAO() {
1086 return _iDBuilderDAO;
1090 * Set the iDBuilderDAO.
1093 * the iDBuilderDAO to set
1095 public void setIDBuilderDAO(final IDBuilderDAO builderDAO) {
1096 _iDBuilderDAO = builderDAO;
1100 * Get the scenarioDAO.
1102 * @return the scenarioDAO
1104 public ScenarioDAO getScenarioDAO() {
1105 return _scenarioDAO;
1109 * Set the scenarioDAO.
1111 * @param scenarioDAO
1112 * the scenarioDAO to set
1114 public void setScenarioDAO(final ScenarioDAO scenarioDAO) {
1115 _scenarioDAO = scenarioDAO;
1119 * Get the validationCycleDAO.
1121 * @return the validationCycleDAO
1123 public ValidationCycleDAO getValidationCycleDAO() {
1124 return _validationCycleDAO;
1128 * Set the validationCycleDAO.
1130 * @param validationCycleDAO
1131 * the validationCycleDAO to set
1133 public void setValidationCycleDAO(
1134 final ValidationCycleDAO validationCycleDAO) {
1135 _validationCycleDAO = validationCycleDAO;
1139 * Get the documentTypeService.
1141 * @return the documentTypeService
1143 public DocumentTypeService getDocumentTypeService() {
1144 return _documentTypeService;
1148 * Set the documentTypeService.
1150 * @param documentTypeService
1151 * the documentTypeService to set
1153 public void setDocumentTypeService(
1154 final DocumentTypeService documentTypeService) {
1155 _documentTypeService = documentTypeService;
1159 * Get the userService.
1161 * @return the userService
1163 public UserService getUserService() {
1164 return _userService;
1168 * Set the userService.
1170 * @param userService
1171 * the userService to set
1173 public void setUserService(final UserService userService) {
1174 _userService = userService;