blob: 9f52674d14243b3be7f9d6e67e7b8e1fee34e33d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.client.enduser.widgets;
import org.apache.syncope.client.enduser.SyncopeEnduserSession;
import org.apache.syncope.common.lib.to.UserTO;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
public class UserProfileWidget extends BaseWidget {
private static final long serialVersionUID = 4437711189800676363L;
protected UserTO userTO;
public UserProfileWidget(final String id) {
super(id);
userTO = SyncopeEnduserSession.get().getSelfTO(true);
WebMarkupContainer userProfile = new WebMarkupContainer("userProfile");
userProfile.setOutputMarkupId(true);
add(userProfile);
Label welcome = new Label("welcome", userTO.getUsername());
welcome.setOutputMarkupId(true);
userProfile.add(welcome);
addBaseFields(userProfile);
addExtFields(userProfile);
}
protected void addBaseFields(final WebMarkupContainer userProfile) {
Label username = new Label("username", userTO.getUsername());
username.setOutputMarkupId(true);
userProfile.add(username);
Label changePwdDate = new Label("changePwdDate", userTO.getChangePwdDate());
changePwdDate.setOutputMarkupId(true);
userProfile.add(changePwdDate);
Label lastLoginDate = new Label("lastLoginDate", userTO.getLastLoginDate());
lastLoginDate.setOutputMarkupId(true);
userProfile.add(lastLoginDate);
}
protected void addExtFields(final WebMarkupContainer userProfile) {
}
}