Package io.camunda.security.auth
Interface CamundaAuthenticationHolder
public interface CamundaAuthenticationHolder
Associates a given
CamundaAuthentication with the current execution thread processing the
request.-
Method Summary
Modifier and TypeMethodDescriptionget()Obtains the currentCamundaAuthentication, or null if not present.voidset(CamundaAuthentication authentication) Associates a givenCamundaAuthenticationwith the current thread of execution while processing the request.booleansupports()Returns to true, ifthiscould hold aCamundaAuthentication.
-
Method Details
-
supports
boolean supports()Returns to true, ifthiscould hold aCamundaAuthentication. -
set
Associates a givenCamundaAuthenticationwith the current thread of execution while processing the request. -
get
CamundaAuthentication get()Obtains the currentCamundaAuthentication, or null if not present.
-