* @param name
* @return
* @throws GWTJahiaServiceException
*/
public GWTManagerConfiguration getManagerConfiguration(String name) throws GWTJahiaServiceException {
GWTManagerConfiguration config = null;
try {
config = uiConfig.getGWTManagerConfiguration(getSite(), getSite(), getRemoteJahiaUser(), getLocale(), getUILocale(),
getRequest(), name);
config.setSiteNode(navigation.getGWTJahiaNode(getSite(), GWTJahiaNode.DEFAULT_SITE_FIELDS));
setAvailablePermissions(config);
}catch (RepositoryException e) {
logger.error("Cannot get node", e);
throw new GWTJahiaServiceException(e.getMessage());
}