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 team12 * User: Benjamin Mestrallet13 * Date: 28 avr. 200414 */15 public class UserPrincipalImpl extends BasePrincipal16 implements UserPrincipal{17 public UserPrincipalImpl(String name) {18 super(name);19 }20 }21