MicrosoftUserAttributeMapper.java

30 lines | 733 B Blame History Raw Download
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2015 Red Hat Inc. and/or its affiliates and other contributors
 * as indicated by the @authors tag. All rights reserved.
 */
package org.keycloak.social.microsoft;

import org.keycloak.broker.oidc.mappers.AbstractJsonUserAttributeMapper;

/**
 * User attribute mapper.
 * 
 * @author Vlastimil Elias (velias at redhat dot com)
 */
public class MicrosoftUserAttributeMapper extends AbstractJsonUserAttributeMapper {

	private static final String[] cp = new String[] { MicrosoftIdentityProviderFactory.PROVIDER_ID };

	@Override
	public String[] getCompatibleProviders() {
		return cp;
	}

	@Override
	public String getId() {
		return "microsoft-user-attribute-mapper";
	}

}