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.RolePrincipal;9 10 /**11 * Created y the eXo platform team12 * User: Benjamin Mestrallet13 * Date: 28 avr. 200414 */15 public class RolePrincipalImpl extends BasePrincipal16 implements RolePrincipal{17 public RolePrincipalImpl(String name) {18 super(name);19 }20 }21