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

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

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

Server.getConf介绍

暂无

代码示例

代码示例来源: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: 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: 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: 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);
 }
}

相关文章