KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > security > impl > UserPrincipalImpl


1 /*
2  * Copyright 2001-2003 The eXo platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  */

5
6 package org.exoplatform.services.security.impl;
7
8 import org.exoplatform.services.security.UserPrincipal;
9
10 /**
11  * Created y the eXo platform team
12  * User: Benjamin Mestrallet
13  * Date: 28 avr. 2004
14  */

15  public class UserPrincipalImpl extends BasePrincipal
16     implements UserPrincipal{
17   public UserPrincipalImpl(String JavaDoc name) {
18     super(name);
19   }
20 }
21
Popular Tags