if(repositoryId == null)
repositoryId = StringUtils.EMPTY;
if(binding == null)
binding = CmisConfig.BINDING_ATOM_VALUE;
ConfigParams newMap = new ConfigParams();
newMap.setParameter(CmisConfig.USERNAME_PARAM, username);
newMap.setParameter(CmisConfig.PASSWORD_PARAM, password);
newMap.setParameter(CmisConfig.PROTOCOL_PARAM, protocol);
newMap.setParameter(CmisConfig.SERVER_PARAM, server);
newMap.setParameter(CmisConfig.PORT_PARAM, port);
newMap.setParameter(CmisConfig.PATH_PARAM, path);
newMap.setParameter(CmisConfig.REPOSITORY_ID_PARAM, repositoryId);
newMap.setParameter(CmisConfig.BINDING_PARAM, binding);
if(CMIS_SERVER_TAB_NAME.equals(tabName)){
outputResource(EDIT_CONFIG_FORWARD, out, newMap);
} else {
outputResource(HIDDEN_CONFIG_FORWARD, out, newMap);
}