Skip to content
Snippets Groups Projects
Commit 59aeb1f5 authored by felmer's avatar felmer
Browse files

LMS-787 Deletion bug fixed.

SVN: 10481
parent 810621a5
No related branches found
No related tags found
No related merge requests found
...@@ -173,7 +173,7 @@ public class VocabularyTermGrid extends AbstractSimpleBrowserGrid<VocabularyTerm ...@@ -173,7 +173,7 @@ public class VocabularyTermGrid extends AbstractSimpleBrowserGrid<VocabularyTerm
textArea.setWidth(250); textArea.setWidth(250);
textArea.setHeight(200); textArea.setHeight(200);
textArea.setEmptyText(viewContext.getMessage(Dict.VOCABULARY_TERMS_EMPTY)); textArea.setEmptyText(viewContext.getMessage(Dict.VOCABULARY_TERMS_EMPTY));
textArea.setValidator(new VocabularyTermValidator(viewContext, vocabulary.getTerms())); textArea.setValidator(new VocabularyTermValidator(viewContext));
String heading = viewContext.getMessage(Dict.ADD_VOCABULARY_TERMS_TITLE); String heading = viewContext.getMessage(Dict.ADD_VOCABULARY_TERMS_TITLE);
String okButtonLabel = viewContext.getMessage(Dict.ADD_VOCABULARY_TERMS_OK_BUTTON); String okButtonLabel = viewContext.getMessage(Dict.ADD_VOCABULARY_TERMS_OK_BUTTON);
HorizontalPanel panel = new HorizontalPanel(); HorizontalPanel panel = new HorizontalPanel();
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
package ch.systemsx.cisd.openbis.generic.server.business.bo; package ch.systemsx.cisd.openbis.generic.server.business.bo;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
...@@ -91,27 +92,27 @@ public class VocabularyBO extends AbstractBusinessObject implements IVocabularyB ...@@ -91,27 +92,27 @@ public class VocabularyBO extends AbstractBusinessObject implements IVocabularyB
List<VocabularyTermReplacement> termsToBeReplaced) List<VocabularyTermReplacement> termsToBeReplaced)
{ {
assert vocabularyPE != null : "Unspecified vocabulary"; assert vocabularyPE != null : "Unspecified vocabulary";
Set<VocabularyTermPE> terms = vocabularyPE.getTerms(); Set<VocabularyTermPE> terms = vocabularyPE.getTerms();
System.out.println(terms.size()); IKeyExtractor<String, VocabularyTermPE> keyExtractor =
IKeyExtractor<String, VocabularyTermPE> keyExtractor = KeyExtractorFactory.<VocabularyTermPE>createCodeKeyExtractor(); KeyExtractorFactory.<VocabularyTermPE> createCodeKeyExtractor();
TableMap<String, VocabularyTermPE> termsMap = new TableMap<String, VocabularyTermPE>(terms, keyExtractor); TableMap<String, VocabularyTermPE> termsMap =
new TableMap<String, VocabularyTermPE>(terms, keyExtractor);
Set<String> remainingTerms = new HashSet<String>(termsMap.keySet());
for (VocabularyTerm termToBeDeleted : termsToBeDeleted) for (VocabularyTerm termToBeDeleted : termsToBeDeleted)
{ {
termsMap.remove(termToBeDeleted.getCode()).setVocabulary(null); remainingTerms.remove(termToBeDeleted.getCode());
} }
for (VocabularyTermReplacement termToBeReplaced : termsToBeReplaced) for (VocabularyTermReplacement termToBeReplaced : termsToBeReplaced)
{ {
termsMap.remove(termToBeReplaced.getTerm().getCode()).setVocabulary(null); remainingTerms.remove(termToBeReplaced.getTerm().getCode());
} }
System.out.println(terms.size());
for (VocabularyTermReplacement termToBeReplaced : termsToBeReplaced) for (VocabularyTermReplacement termToBeReplaced : termsToBeReplaced)
{ {
String code = termToBeReplaced.getTerm().getCode(); String code = termToBeReplaced.getTerm().getCode();
String replacement = termToBeReplaced.getReplacement(); String replacement = termToBeReplaced.getReplacement();
VocabularyTermPE term = termsMap.tryGet(replacement); VocabularyTermPE term = termsMap.tryGet(replacement);
if (term == null) if (term == null || remainingTerms.contains(replacement) == false)
{ {
throw new IllegalArgumentException( throw new IllegalArgumentException(
"Invalid vocabulary replacement because of unknown replacement: " "Invalid vocabulary replacement because of unknown replacement: "
...@@ -128,6 +129,14 @@ public class VocabularyBO extends AbstractBusinessObject implements IVocabularyB ...@@ -128,6 +129,14 @@ public class VocabularyBO extends AbstractBusinessObject implements IVocabularyB
dao.updateProperties(properties); dao.updateProperties(properties);
} }
} }
for (VocabularyTerm termToBeDeleted : termsToBeDeleted)
{
termsMap.remove(termToBeDeleted.getCode()).setVocabulary(null);
}
for (VocabularyTermReplacement termToBeReplaced : termsToBeReplaced)
{
termsMap.remove(termToBeReplaced.getTerm().getCode()).setVocabulary(null);
}
} }
public void save() throws UserFailureException public void save() throws UserFailureException
......
...@@ -40,6 +40,7 @@ import javax.persistence.Version; ...@@ -40,6 +40,7 @@ import javax.persistence.Version;
import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringBuilder;
import org.hibernate.annotations.Cascade;
import org.hibernate.validator.Length; import org.hibernate.validator.Length;
import org.hibernate.validator.NotNull; import org.hibernate.validator.NotNull;
import org.hibernate.validator.Pattern; import org.hibernate.validator.Pattern;
...@@ -144,6 +145,7 @@ public class VocabularyPE extends HibernateAbstractRegistrationHolder implements ...@@ -144,6 +145,7 @@ public class VocabularyPE extends HibernateAbstractRegistrationHolder implements
} }
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "vocabularyInternal") @OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "vocabularyInternal")
@Cascade(org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
private Set<VocabularyTermPE> getVocabularyTerms() private Set<VocabularyTermPE> getVocabularyTerms()
{ {
return terms; return terms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment