Skip to content
Snippets Groups Projects
Commit 5ccfa7f1 authored by gpawel's avatar gpawel
Browse files

[LMS-2341] minor: unofficial -> ad-hoc

SVN: 21926
parent 1adc04ae
No related branches found
No related tags found
No related merge requests found
...@@ -513,7 +513,7 @@ public class DataSetUploadClientModel ...@@ -513,7 +513,7 @@ public class DataSetUploadClientModel
public void addUnofficialVocabularyTerm(Vocabulary vocabulary, String code, String label, public void addUnofficialVocabularyTerm(Vocabulary vocabulary, String code, String label,
String description, Long previousTermOrdinal) String description, Long previousTermOrdinal)
{ {
openBISService.addUnofficialVocabularyTerm(TechId.create(vocabulary), code, label, openBISService.addAdHocVocabularyTerm(TechId.create(vocabulary), code, label,
description, previousTermOrdinal); description, previousTermOrdinal);
dataSetTypes = openBISService.listDataSetTypes(); dataSetTypes = openBISService.listDataSetTypes();
vocabularyTerms = openBISService.getVocabularyTermsMap(); vocabularyTerms = openBISService.getVocabularyTermsMap();
......
...@@ -63,7 +63,7 @@ public interface IOpenbisServiceFacade extends ISimpleOpenbisServiceFacade ...@@ -63,7 +63,7 @@ public interface IOpenbisServiceFacade extends ISimpleOpenbisServiceFacade
public List<DataSet> listDataSets(List<Sample> samples, EnumSet<Connections> connectionsToGet); public List<DataSet> listDataSets(List<Sample> samples, EnumSet<Connections> connectionsToGet);
/** /**
* Adds new unofficial (ad-hoc) terms to a vocabulary starting from specified ordinal + 1. * Adds new ad-hoc terms to a vocabulary starting from specified ordinal + 1.
* *
* @param vocabularyId The id of vocabulary which should be extended. * @param vocabularyId The id of vocabulary which should be extended.
* @param code Code of new vocabulary term. * @param code Code of new vocabulary term.
...@@ -72,7 +72,7 @@ public interface IOpenbisServiceFacade extends ISimpleOpenbisServiceFacade ...@@ -72,7 +72,7 @@ public interface IOpenbisServiceFacade extends ISimpleOpenbisServiceFacade
* @param previousTermOrdinal new vocabulary term will be placed right after vocabulary term * @param previousTermOrdinal new vocabulary term will be placed right after vocabulary term
* with given ordinal number. * with given ordinal number.
*/ */
public void addUnofficialVocabularyTerm(TechId vocabularyId, String code, String label, public void addAdHocVocabularyTerm(TechId vocabularyId, String code, String label,
String description, Long previousTermOrdinal); String description, Long previousTermOrdinal);
/** /**
......
...@@ -451,7 +451,7 @@ public class OpenbisServiceFacade implements IOpenbisServiceFacade ...@@ -451,7 +451,7 @@ public class OpenbisServiceFacade implements IOpenbisServiceFacade
return convertedDataSets; return convertedDataSets;
} }
public void addUnofficialVocabularyTerm(TechId vocabularyId, String code, String label, public void addAdHocVocabularyTerm(TechId vocabularyId, String code, String label,
String description, Long previousTermOrdinal) String description, Long previousTermOrdinal)
{ {
changingService.addUnofficialVocabularyTerm(sessionToken, vocabularyId, code, label, changingService.addUnofficialVocabularyTerm(sessionToken, vocabularyId, code, label,
......
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