1 48 49 package com.caucho.portal.generic; 50 51 import javax.portlet.PortletRequest; 52 import java.io.IOException ; 53 import java.util.Map ; 54 import java.util.Set ; 55 56 61 public interface UserAttributeStore { 62 74 public Map <String , String > getUserAttributeMap( PortletRequest request, 75 Set <String > names ) 76 throws IOException ; 77 78 86 public void finish( Map <String , String > userAttributeMap ) 87 throws IOException ; 88 } 89 90 | Popular Tags |