当前位置: 首页>>代码示例>>Java>>正文


Java UserGroupInformation.getAuthenticationMethod方法代码示例

本文整理汇总了Java中org.apache.hadoop.security.UserGroupInformation.getAuthenticationMethod方法的典型用法代码示例。如果您正苦于以下问题:Java UserGroupInformation.getAuthenticationMethod方法的具体用法?Java UserGroupInformation.getAuthenticationMethod怎么用?Java UserGroupInformation.getAuthenticationMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.security.UserGroupInformation的用法示例。


在下文中一共展示了UserGroupInformation.getAuthenticationMethod方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: doGet

import org.apache.hadoop.security.UserGroupInformation; //导入方法依赖的package包/类
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
    throws ServletException, IOException {
  UserGroupInformation ugi = HttpUserGroupInformation.get();
  if (ugi != null) {
    String ret = "remoteuser=" + req.getRemoteUser() + ":ugi=" +
        ugi.getShortUserName();
    if (ugi.getAuthenticationMethod() ==
        UserGroupInformation.AuthenticationMethod.PROXY) {
      ret = "realugi=" + ugi.getRealUser().getShortUserName() + ":" + ret;
    }
    resp.setStatus(HttpServletResponse.SC_OK);
    resp.getWriter().write(ret);
  } else {
    resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
  }
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:18,代码来源:TestWebDelegationToken.java

示例2: printUGI

import org.apache.hadoop.security.UserGroupInformation; //导入方法依赖的package包/类
private void printUGI(UserGroupInformation ugi) {
  if (ugi != null) {
    // dump login information
    AuthenticationMethod authMethod = ugi.getAuthenticationMethod();
    LOG.info("\n{} \nUser: {} \nAuth method: {} \nKeytab: {} \n",
        new Object[] {
          authMethod.equals(AuthenticationMethod.PROXY) ? "Proxy as: " : "Logged as: ",
          ugi.getUserName(), authMethod, ugi.isFromKeytab()
        }
    );
  }
}
 
开发者ID:moueimei,项目名称:flume-release-1.7.0,代码行数:13,代码来源:KerberosAuthenticator.java

示例3: getConnectionAuthenticationMethod

import org.apache.hadoop.security.UserGroupInformation; //导入方法依赖的package包/类
/**
 * Returns authentication method used to establish the connection
 * @return AuthenticationMethod used to establish connection
 * @throws IOException
 */
private AuthenticationMethod getConnectionAuthenticationMethod()
    throws IOException {
  UserGroupInformation ugi = getRemoteUser();
  AuthenticationMethod authMethod = ugi.getAuthenticationMethod();
  if (authMethod == AuthenticationMethod.PROXY) {
    authMethod = ugi.getRealUser().getAuthenticationMethod();
  }
  return authMethod;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:15,代码来源:FSNamesystem.java

示例4: isAllowedDelegationTokenOp

import org.apache.hadoop.security.UserGroupInformation; //导入方法依赖的package包/类
/**
 * @param ugi A user group information.
 * @return true if delegation token operation is allowed
 */
private boolean isAllowedDelegationTokenOp(UserGroupInformation ugi) throws IOException {
  AuthenticationMethod authMethod = ugi.getAuthenticationMethod();
  if (authMethod == AuthenticationMethod.PROXY) {
    authMethod = ugi.getRealUser().getAuthenticationMethod();
  }
  if (authMethod != AuthenticationMethod.KERBEROS
      && authMethod != AuthenticationMethod.KERBEROS_SSL
      && authMethod != AuthenticationMethod.CERTIFICATE) {
    return false;
  }
  return true;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:17,代码来源:TokenProvider.java

示例5: logAuditEvent

import org.apache.hadoop.security.UserGroupInformation; //导入方法依赖的package包/类
@Override
public void logAuditEvent(boolean succeeded, String userName,
    InetAddress addr, String cmd, String src, String dst,
    FileStatus status, UserGroupInformation ugi,
    DelegationTokenSecretManager dtSecretManager) {
  if (auditLog.isInfoEnabled()) {
    final StringBuilder sb = auditBuffer.get();
    sb.setLength(0);
    sb.append("allowed=").append(succeeded).append("\t");
    sb.append("ugi=").append(userName).append("\t");
    sb.append("ip=").append(addr).append("\t");
    sb.append("cmd=").append(cmd).append("\t");
    sb.append("src=").append(src).append("\t");
    sb.append("dst=").append(dst).append("\t");
    if (null == status) {
      sb.append("perm=null");
    } else {
      sb.append("perm=");
      sb.append(status.getOwner()).append(":");
      sb.append(status.getGroup()).append(":");
      sb.append(status.getPermission());
    }
    if (logTokenTrackingId) {
      sb.append("\t").append("trackingId=");
      String trackingId = null;
      if (ugi != null && dtSecretManager != null
          && ugi.getAuthenticationMethod() == AuthenticationMethod.TOKEN) {
        for (TokenIdentifier tid: ugi.getTokenIdentifiers()) {
          if (tid instanceof DelegationTokenIdentifier) {
            DelegationTokenIdentifier dtid =
                (DelegationTokenIdentifier)tid;
            trackingId = dtSecretManager.getTokenTrackingId(dtid);
            break;
          }
        }
      }
      sb.append(trackingId);
    }
    sb.append("\t").append("proto=");
    sb.append(NamenodeWebHdfsMethods.isWebHdfsInvocation() ? "webhdfs" : "rpc");
    logAuditMessage(sb.toString());
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:44,代码来源:FSNamesystem.java


注:本文中的org.apache.hadoop.security.UserGroupInformation.getAuthenticationMethod方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。