mirror of
https://github.com/corda/corda.git
synced 2025-01-09 06:23:04 +00:00
16 lines
234 B
Java
16 lines
234 B
Java
package java.security;
|
|
|
|
/**
|
|
* No real access control is implemented here.
|
|
*
|
|
* @author zsombor
|
|
*
|
|
*/
|
|
public class AccessController {
|
|
|
|
public static Object doPrivileged (PrivilegedAction action) {
|
|
return action.run();
|
|
}
|
|
|
|
}
|