private void postProcess(BVParameters bvParameters) { bvFooter = new BVHTMLFooter(_bvConfiguration, bvParameters); message = new StringBuilder(); /* * Validator to check if all the bvParameters are valid. */ bvParamValidator = new BVDefaultValidator(); validationError = bvParamValidator.validate(_bvConfiguration, bvParameters); if (!String.IsNullOrEmpty(validationError)) { return; } reloadContent = bvParameters.Equals(this.bvParameters); if (!reloadContent) { this.bvParameters = bvParameters; bvSeoSdkUrl = new BVSeoSdkURLBuilder(_bvConfiguration, bvParameters); bvUiContentService = new BVUIContentServiceProvider(_bvConfiguration); bvUiContentService.setBVParameters(this.bvParameters); bvUiContentService.setBVSeoSdkUrl(bvSeoSdkUrl); } bvFooter.setBvSeoSdkUrl(bvSeoSdkUrl); }