com.tenduke.events.api.model.data.UserFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events-api Show documentation
Show all versions of events-api Show documentation
Objects and interfaces describing data communicated in the 10Duke Event Data system API
package com.tenduke.events.api.model.data;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Event data fields related to end user.
* @author jarkko
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface UserFields extends UserIdFields {
/**
* Gets id of authenticated session established when user authenticates herself.
* @return The authenticated session id.
*/
String getAuthenticatedSessionId();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy