Java Code Examples for org.apache.hadoop.ipc.Server#getRemoteUser()
The following examples show how to use
org.apache.hadoop.ipc.Server#getRemoteUser() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ServerUtils.java From hadoop-ozone with Apache License 2.0 | 4 votes |
public static String getRemoteUserName() { UserGroupInformation remoteUser = Server.getRemoteUser(); return remoteUser != null ? remoteUser.getUserName() : null; }
Example 2
Source File: OMKeyRequest.java From hadoop-ozone with Apache License 2.0 | 4 votes |
private UserGroupInformation getRemoteUser() throws IOException { UserGroupInformation ugi = Server.getRemoteUser(); return (ugi != null) ? ugi : UserGroupInformation.getCurrentUser(); }
Example 3
Source File: KeyManagerImpl.java From hadoop-ozone with Apache License 2.0 | 4 votes |
public static UserGroupInformation getRemoteUser() throws IOException { UserGroupInformation ugi = Server.getRemoteUser(); return (ugi != null) ? ugi : UserGroupInformation.getCurrentUser(); }
Example 4
Source File: OzoneManager.java From hadoop-ozone with Apache License 2.0 | 4 votes |
private static UserGroupInformation getRemoteUser() throws IOException { UserGroupInformation ugi = Server.getRemoteUser(); return (ugi != null) ? ugi : UserGroupInformation.getCurrentUser(); }
Example 5
Source File: NameNode.java From hadoop with Apache License 2.0 | 4 votes |
public static UserGroupInformation getRemoteUser() throws IOException { UserGroupInformation ugi = Server.getRemoteUser(); return (ugi != null) ? ugi : UserGroupInformation.getCurrentUser(); }
Example 6
Source File: NameNode.java From big-c with Apache License 2.0 | 4 votes |
public static UserGroupInformation getRemoteUser() throws IOException { UserGroupInformation ugi = Server.getRemoteUser(); return (ugi != null) ? ugi : UserGroupInformation.getCurrentUser(); }