Package io.manebot.security
Interface ElevationDispatcher
-
public interface ElevationDispatcher
-
-
Method Summary
Modifier and Type Method Description <R> Relevate(ThrowingCallable<R,java.lang.Exception> callable)voidelevate(ThrowingRunnable<java.lang.Exception> runnable)<T,R>
Relevate(T object, ThrowingFunction<T,R,java.lang.Exception> function)UsergetElevatedUser()
-
-
-
Method Detail
-
getElevatedUser
User getElevatedUser()
-
elevate
<R> R elevate(ThrowingCallable<R,java.lang.Exception> callable) throws java.lang.Exception
- Throws:
java.lang.Exception
-
elevate
<T,R> R elevate(T object, ThrowingFunction<T,R,java.lang.Exception> function) throws java.lang.Exception- Throws:
java.lang.Exception
-
elevate
void elevate(ThrowingRunnable<java.lang.Exception> runnable) throws java.lang.Exception
- Throws:
java.lang.Exception
-
-