UIFormInputSet businessInputSet = new UIFormInputSet("BusinessInfo");
addInput(businessInputSet, UserProfile.BUSINESE_INFO_KEYS);
businessInputSet.setRendered(false);
addUIFormInput(businessInputSet);
OAuthProviderTypeRegistry registry = getApplicationComponent(OAuthProviderTypeRegistry.class);
if (registry.isOAuthEnabled()) {
UIFormInputSet socialInputSet = new UIFormInputSet("SocialNetworksInfo");
addInput(socialInputSet, getSocialInfoKeys());
socialInputSet.setRendered(false);
addUIFormInput(socialInputSet);
}