001    package net.databinder.auth.components.hib;
002    
003    import org.apache.wicket.Component;
004    
005    import net.databinder.auth.components.DataProfilePageBase;
006    import net.databinder.auth.components.DataSignInPageBase.ReturnPage;
007    
008    /**
009     * Display profile editing page for logged in user. 
010     * Replaceable String resources: <pre>
011     * data.auth.update
012     * data.auth.title.update
013     */
014    public class DataProfilePage extends DataProfilePageBase {
015            public DataProfilePage(ReturnPage returnPage) {
016                    super(returnPage);
017            }
018            @Override
019            protected Component profileSocket(String id, ReturnPage returnPage) {
020                    return new DataProfilePanel(id, returnPage);
021            }
022    }