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 package org.exoplatform.services.organization;6 7 import java.util.Map ;8 9 /**10 * Created by The eXo Platform SARL11 * Author : Tuan Nguyen12 * tuan08@users.sourceforge.net13 * Date: Aug 21, 200314 * Time: 3:22:54 PM15 */16 17 public interface UserProfile {18 19 public String getUserName() ;20 21 public Map getUserInfoMap() ;22 public void setUserInfoMap(Map map) ;23 24 public String getAttribute(String attName) ;25 public void setAttribute(String key, String value) ;26 }