org.apache.hadoop.ipc.Server.getProtocolClass()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(91)

本文整理了Java中org.apache.hadoop.ipc.Server.getProtocolClass()方法的一些代码示例,展示了Server.getProtocolClass()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Server.getProtocolClass()方法的具体详情如下:
包路径:org.apache.hadoop.ipc.Server
类名称:Server
方法名:getProtocolClass

Server.getProtocolClass介绍

暂无

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-common

/**
 * Authorize the incoming client connection.
 * 
 * @param user client user
 * @param protocolName - the protocol
 * @param addr InetAddress of incoming connection
 * @throws AuthorizationException when the client isn't authorized to talk the protocol
 */
private void authorize(UserGroupInformation user, String protocolName,
  InetAddress addr) throws AuthorizationException {
 if (authorize) {
  if (protocolName == null) {
   throw new AuthorizationException("Null protocol not authorized");
  }
  Class<?> protocol = null;
  try {
   protocol = getProtocolClass(protocolName, getConf());
  } catch (ClassNotFoundException cfne) {
   throw new AuthorizationException("Unknown protocol: " + 
                    protocolName);
  }
  serviceAuthorizationManager.authorize(user, protocol, getConf(), addr);
 }
}

代码示例来源:origin: com.facebook.hadoop/hadoop-core

private void processHeader() throws IOException {
 DataInputStream in =
  new DataInputStream(new ByteArrayInputStream(data.array()));
 header.readFields(in);
 try {
  String protocolClassName = header.getProtocol();
  if (protocolClassName != null) {
   protocol = getProtocolClass(header.getProtocol(), conf);
  }
 } catch (ClassNotFoundException cnfe) {
  throw new IOException("Unknown protocol: " + header.getProtocol());
 }
 // TODO: Get the user name from the GSS API for Kerberbos-based security
 // Create the user subject
 user = SecurityUtil.getSubject(header.getUgi());
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

/**
 * Authorize the incoming client connection.
 * 
 * @param user client user
 * @param protocolName - the protocol
 * @param addr InetAddress of incoming connection
 * @throws AuthorizationException when the client isn't authorized to talk the protocol
 */
private void authorize(UserGroupInformation user, String protocolName,
  InetAddress addr) throws AuthorizationException {
 if (authorize) {
  if (protocolName == null) {
   throw new AuthorizationException("Null protocol not authorized");
  }
  Class<?> protocol = null;
  try {
   protocol = getProtocolClass(protocolName, getConf());
  } catch (ClassNotFoundException cfne) {
   throw new AuthorizationException("Unknown protocol: " + 
                    protocolName);
  }
  serviceAuthorizationManager.authorize(user, protocol, getConf(), addr);
 }
}

代码示例来源:origin: io.hops/hadoop-common

/**
 * Authorize the incoming client connection.
 * 
 * @param user client user
 * @param protocolName - the protocol
 * @param addr InetAddress of incoming connection
 * @throws AuthorizationException when the client isn't authorized to talk the protocol
 */
private void authorize(UserGroupInformation user, String protocolName,
  InetAddress addr) throws AuthorizationException {
 if (authorize) {
  if (protocolName == null) {
   throw new AuthorizationException("Null protocol not authorized");
  }
  Class<?> protocol = null;
  try {
   protocol = getProtocolClass(protocolName, getConf());
  } catch (ClassNotFoundException cfne) {
   throw new AuthorizationException("Unknown protocol: " + 
                    protocolName);
  }
  serviceAuthorizationManager.authorize(user, protocol, getConf(), addr);
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

/**
 * Authorize the incoming client connection.
 * 
 * @param user client user
 * @param protocolName - the protocol
 * @param addr InetAddress of incoming connection
 * @throws AuthorizationException when the client isn't authorized to talk the protocol
 */
private void authorize(UserGroupInformation user, String protocolName,
  InetAddress addr) throws AuthorizationException {
 if (authorize) {
  if (protocolName == null) {
   throw new AuthorizationException("Null protocol not authorized");
  }
  Class<?> protocol = null;
  try {
   protocol = getProtocolClass(protocolName, getConf());
  } catch (ClassNotFoundException cfne) {
   throw new AuthorizationException("Unknown protocol: " + 
                    protocolName);
  }
  serviceAuthorizationManager.authorize(user, protocol, getConf(), addr);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

/**
 * Authorize the incoming client connection.
 * 
 * @param user client user
 * @param protocolName - the protocol
 * @param addr InetAddress of incoming connection
 * @throws AuthorizationException when the client isn't authorized to talk the protocol
 */
private void authorize(UserGroupInformation user, String protocolName,
  InetAddress addr) throws AuthorizationException {
 if (authorize) {
  if (protocolName == null) {
   throw new AuthorizationException("Null protocol not authorized");
  }
  Class<?> protocol = null;
  try {
   protocol = getProtocolClass(protocolName, getConf());
  } catch (ClassNotFoundException cfne) {
   throw new AuthorizationException("Unknown protocol: " + 
                    protocolName);
  }
  serviceAuthorizationManager.authorize(user, protocol, getConf(), addr);
 }
}

相关文章

微信公众号

最新文章

更多