blob: 4717d60893f7a3e55900ff0af288915cef1634ca [file] [log] [blame]
/*
* Copyright (c) 2008, Edward Yakop. All Rights Reserved.
*
* Licensed 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.zest.envisage.school.ui.admin.pages;
import org.apache.zest.api.concern.Concerns;
import org.apache.zest.api.mixin.Mixins;
import org.apache.zest.envisage.school.domain.person.Person;
import org.apache.zest.envisage.school.ui.admin.pages.mixins.AuthenticationConcern;
import org.apache.zest.envisage.school.ui.admin.pages.mixins.DetailPage;
import org.apache.zest.envisage.school.ui.admin.pages.mixins.UserDetailPageMixin;
@Concerns( AuthenticationConcern.class )
@Mixins( UserDetailPageMixin.class )
public interface UserDetailPage
extends DetailPage<Person>
{
}