From a2d6473d0cc222109902190abcd0f86fa98aec3f Mon Sep 17 00:00:00 2001 From: pkupczyk <pkupczyk> Date: Fri, 19 Oct 2012 14:05:18 +0000 Subject: [PATCH] Fix a bug where an entity registration page couldn't be entered because of a failing HTML escaped managed properties script (script was taken from HTML escaped EntityType object that was sent from the GWT client) - add javadoc SVN: 27247 --- .../systemsx/cisd/openbis/generic/shared/ICommonServer.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/ICommonServer.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/ICommonServer.java index 88bec154d14..b810b57d5ec 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/ICommonServer.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/ICommonServer.java @@ -267,9 +267,13 @@ public interface ICommonServer extends IServer @Transactional(readOnly = true) public List<SampleType> listSampleTypes(String sessionToken); + /** + * Lists managed properties widgets descriptions for the specified entity kind and entity type + * code. + */ @Transactional(readOnly = true) public Map<String, List<IManagedInputWidgetDescription>> listManagedInputWidgetDescriptions( - String sessionToken, EntityType entityType); + String sessionToken, EntityKind entityKind, String entityTypeCode); /** * Lists samples using given configuration. -- GitLab