Extending OOTB User Profile Community Component
I need to add three custom fields like URL field in edit profile section in USER PROFILE component.I have written three classes.Following are the classes' details:
1) Interface BlogUserProfile.java extends SocialComponent
2) Class BlogUserProfileComponentFactory.java extends
extends AbstractSocialComponentFactory
implements SocialComponentFactory
where prioriry mentioned and getSupportedResourceType also mentioned to my extended component.
3) BlogUserProfileImpl
extends BaseSocialComponent
implements BlogUserProfile
But when i am hitting user profile component, BlogUserProfileComponentFactory.java is not getting called.
Can anyone have any idea on this.
