Skip to content
Snippets Groups Projects
Commit a2d6473d authored by pkupczyk's avatar pkupczyk
Browse files

Fix a bug where an entity registration page couldn't be entered because of a...

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
parent 7f275b18
No related merge requests found
......@@ -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.
......
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