Skip to content
Snippets Groups Projects
Commit d506dcfd authored by brinn's avatar brinn
Browse files

Move Methods getCustomDisplaySettings() and setCustomDisplaySettings() from...

Move Methods getCustomDisplaySettings() and setCustomDisplaySettings() from IGeneralInformationService to IGeneralInformationChangingService.

SVN: 26329
parent b7594d59
No related branches found
No related tags found
No related merge requests found
...@@ -63,4 +63,24 @@ public interface IGeneralInformationChangingService extends IRpcService ...@@ -63,4 +63,24 @@ public interface IGeneralInformationChangingService extends IRpcService
public void addUnofficialVocabularyTerm(String sessionToken, Long vocabularyId, public void addUnofficialVocabularyTerm(String sessionToken, Long vocabularyId,
NewVocabularyTerm term); NewVocabularyTerm term);
/**
* Returns the custom display settings for a given custom web app.
*
* @param webAppId The id of the custom web app to get the display settings for.
*
* @since 1.2
*/
public Map<String, String> getCustomDisplaySettings(String sessionToken, String webAppId);
/**
* Sets the custom display settings for a given custom web app.
*
* @param webAppId The id of the custom web app to set the display settings for.
* @param customDisplaySettings The new display settings
*
* @since 1.2
*/
public void setCustomDisplaySettings(String sessionToken, String webAppId,
Map<String, String> customDisplaySettings);
} }
...@@ -454,24 +454,4 @@ public interface IGeneralInformationService extends IRpcService ...@@ -454,24 +454,4 @@ public interface IGeneralInformationService extends IRpcService
*/ */
public List<Material> searchForMaterials(String sessionToken, SearchCriteria searchCriteria); public List<Material> searchForMaterials(String sessionToken, SearchCriteria searchCriteria);
/**
* Returns the custom display settings for a given custom web app.
*
* @param webAppId The id of the custom web app to get the display settings for.
*
* @since 1.19
*/
public Map<String, String> getCustomDisplaySettings(String sessionToken, String webAppId);
/**
* Sets the custom display settings for a given custom web app.
*
* @param webAppId The id of the custom web app to set the display settings for.
* @param customDisplaySettings The new display settings
*
* @since 1.19
*/
public void setCustomDisplaySettings(String sessionToken, String webAppId,
Map<String, String> customDisplaySettings);
} }
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