Class AuthenticationDto
- java.lang.Object
-
- org.camunda.bpm.webapp.impl.security.auth.AuthenticationDto
-
public class AuthenticationDto extends java.lang.Object- Author:
- Daniel Meyer, nico.rehwaldt
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<java.lang.String>authorizedAppsprotected java.lang.StringuserId
-
Constructor Summary
Constructors Constructor Description AuthenticationDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationDtofromAuthentication(Authentication authentication)java.util.List<java.lang.String>getAuthorizedApps()java.lang.StringgetUserId()voidsetAuthorizedApps(java.util.List<java.lang.String> authorizedApps)voidsetUserId(java.lang.String userId)
-
-
-
Method Detail
-
fromAuthentication
public static AuthenticationDto fromAuthentication(Authentication authentication)
-
getUserId
public java.lang.String getUserId()
-
setUserId
public void setUserId(java.lang.String userId)
-
setAuthorizedApps
public void setAuthorizedApps(java.util.List<java.lang.String> authorizedApps)
-
getAuthorizedApps
public java.util.List<java.lang.String> getAuthorizedApps()
-
-