pl.edu.icm.unity.oauth.as.OAuthAttributeMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-oauth Show documentation
Show all versions of unity-server-oauth Show documentation
Client and server OAuth support
The newest version!
/*
* Copyright (c) 2014 ICM Uniwersytet Warszawski All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.oauth.as;
import pl.edu.icm.unity.base.attribute.Attribute;
/**
* Maps Unity attributes to OAuth attributes, which is simple mapping to JSON.
* @author K. Benedyczak
*/
public interface OAuthAttributeMapper
{
public boolean isHandled(Attribute unityAttribute);
public Object getJsonValue(Attribute unityAttribute);
public String getJsonKey(Attribute unityAttribute);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy