publicParamsMap.put(oneOfAllParams, publicParams.get(oneOfAllParams));
}
}
// Handle exposed portal contextual properties
ContextualPropertyManager propertyManager = this.getApplicationComponent(ContextualPropertyManager.class);
Map<QName, String[]> exposedPortalState = propertyManager.getProperties(this);
for (QName prpQName : exposedPortalState.keySet()) {
String prpId = supportsPublicParam(prpQName);
if (prpId != null) {
publicParamsMap.put(prpId, exposedPortalState.get(prpQName));
}