001    package net.databinder.auth.components.ao;
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            
016            public DataProfilePage(ReturnPage returnPage) {
017                    super(returnPage);
018            }
019            
020            @Override
021            protected Component profileSocket(String id, ReturnPage returnPage) {
022                    return new DataProfilePanel(id, returnPage);
023            }
024    }