All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.edu.icm.unity.oauth.as.OAuthAttributeMapper Maven / Gradle / Ivy

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