commit | author | age | ||
513246 | 1 | package org.keycloak.protocol.cas.mappers; |
MP | 2 | |
3 | import org.keycloak.models.ProtocolMapperModel; | |
4 | import org.keycloak.models.UserSessionModel; | |
5 | ||
6 | import java.util.Map; | |
7 | ||
8 | public interface CASAttributeMapper { | |
9 | void setAttribute(Map<String, Object> attributes, ProtocolMapperModel mappingModel, UserSessionModel userSession); | |
10 | } |