View Javadoc
1   package fr.paris.lutece.plugins.mylutece.service;
2   
3   import java.util.List;
4   import java.util.Locale;
5   
6   import fr.paris.lutece.plugins.mylutece.business.LuteceUserRoleDescription;
7   
8   
9   /**
10   * The Interface ILuteceUserAttributesProvided.
11   */
12  public interface ILuteceUserRolesProvidedDescription {
13  	
14  	/**
15  	 * Gets the lutece user attributes provided.
16  	 *
17  	 * @return the lutece user attributes provided
18  	 */
19  	default List<LuteceUserRoleDescription> getLuteceUserRolesProvided(Locale locale)
20  	{
21  		 // Default implementation doesn't do anything. This is used for backward compatibility
22  	     return null;
23  	}
24  
25  }