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

org.webswing.toolkit.api.security.WebswingUser Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.toolkit.api.security;

import java.io.Serializable;
import java.util.Map;

/**
 * Representation of user logged-in to Webswing through web interface. 
 */
public interface WebswingUser{

	/**
	 * @return Unique user id
	 */
	String getUserId();

	/**
	 * @return map of user attributes specific to configured security module implementation. 
	 */
	Map getUserAttributes();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy