//Get the parameters from the session
@SuppressWarnings("unchecked")
Map<String, Object> sessionParameters = (Map<String, Object>) session.getAttribute(parametersUUID);
if (sessionParameters == null || sessionParameters.isEmpty()) {
throw new DetailedSerializationException("Error initializing Guided Editor",
"No initial parameters were supplied");
}
boolean hideLHSInEditor = isHideLHSInEditor(sessionParameters);
boolean hideRHSInEditor = isHideRHSInEditor(sessionParameters);