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


Java Check.notEmpty方法代码示例

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


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

示例1: Server

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Creates a server instance.
 * <p>
 * It uses the provided configuration instead loading it from the config dir.
 *
 * @param name server name.
 * @param homeDir server home directory.
 * @param configDir config directory.
 * @param logDir log directory.
 * @param tempDir temp directory.
 * @param config server configuration.
 */
public Server(String name, String homeDir, String configDir, String logDir, String tempDir, Configuration config) {
  this.name = StringUtils.toLowerCase(Check.notEmpty(name, "name").trim());
  this.homeDir = Check.notEmpty(homeDir, "homeDir");
  this.configDir = Check.notEmpty(configDir, "configDir");
  this.logDir = Check.notEmpty(logDir, "logDir");
  this.tempDir = Check.notEmpty(tempDir, "tempDir");
  checkAbsolutePath(homeDir, "homeDir");
  checkAbsolutePath(configDir, "configDir");
  checkAbsolutePath(logDir, "logDir");
  checkAbsolutePath(tempDir, "tempDir");
  if (config != null) {
    this.config = new Configuration(false);
    ConfigurationUtils.copy(config, this.config);
  }
  status = Status.UNDEF;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:29,代码来源:Server.java

示例2: Server

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Creates a server instance.
 * <p/>
 * It uses the provided configuration instead loading it from the config dir.
 *
 * @param name server name.
 * @param homeDir server home directory.
 * @param configDir config directory.
 * @param logDir log directory.
 * @param tempDir temp directory.
 * @param config server configuration.
 */
public Server(String name, String homeDir, String configDir, String logDir, String tempDir, Configuration config) {
  this.name = Check.notEmpty(name, "name").trim().toLowerCase();
  this.homeDir = Check.notEmpty(homeDir, "homeDir");
  this.configDir = Check.notEmpty(configDir, "configDir");
  this.logDir = Check.notEmpty(logDir, "logDir");
  this.tempDir = Check.notEmpty(tempDir, "tempDir");
  checkAbsolutePath(homeDir, "homeDir");
  checkAbsolutePath(configDir, "configDir");
  checkAbsolutePath(logDir, "logDir");
  checkAbsolutePath(tempDir, "tempDir");
  if (config != null) {
    this.config = new Configuration(false);
    ConfigurationUtils.copy(config, this.config);
  }
  status = Status.UNDEF;
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:29,代码来源:Server.java

示例3: validate

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
@Override
public void validate(String proxyUser, String proxyHost, String doAsUser) throws IOException,
  AccessControlException {
  Check.notEmpty(proxyUser, "proxyUser");
  Check.notEmpty(proxyHost, "proxyHost");
  Check.notEmpty(doAsUser, "doAsUser");
  LOG.debug("Authorization check proxyuser [{}] host [{}] doAs [{}]",
            new Object[]{proxyUser, proxyHost, doAsUser});
  if (proxyUserHosts.containsKey(proxyUser)) {
    proxyHost = normalizeHostname(proxyHost);
    validateRequestorHost(proxyUser, proxyHost, proxyUserHosts.get(proxyUser));
    validateGroup(proxyUser, doAsUser, proxyUserGroups.get(proxyUser));
  } else {
    throw new AccessControlException(MessageFormat.format("User [{0}] not defined as proxyuser", proxyUser));
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:17,代码来源:ProxyUserService.java

示例4: validate

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
@Override
public void validate(String proxyUser, String proxyHost, String doAsUser)
    throws IOException, AccessControlException {
  Check.notEmpty(proxyUser, "proxyUser");
  Check.notEmpty(proxyHost, "proxyHost");
  Check.notEmpty(doAsUser, "doAsUser");
  LOG.debug("Authorization check proxyuser [{}] host [{}] doAs [{}]",
      new Object[]{proxyUser, proxyHost, doAsUser});
  if (proxyUserHosts.containsKey(proxyUser)) {
    proxyHost = normalizeHostname(proxyHost);
    validateRequestorHost(proxyUser, proxyHost,
        proxyUserHosts.get(proxyUser));
    validateGroup(proxyUser, doAsUser, proxyUserGroups.get(proxyUser));
  } else {
    throw new AccessControlException(MessageFormat
        .format("User [{0}] not defined as proxyuser", proxyUser));
  }
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:19,代码来源:ProxyUserService.java

示例5: Server

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Creates a server instance.
 * <p/>
 * It uses the provided configuration instead loading it from the config dir.
 *
 * @param name
 *     server name.
 * @param homeDir
 *     server home directory.
 * @param configDir
 *     config directory.
 * @param logDir
 *     log directory.
 * @param tempDir
 *     temp directory.
 * @param config
 *     server configuration.
 */
public Server(String name, String homeDir, String configDir, String logDir,
    String tempDir, Configuration config) {
  this.name = Check.notEmpty(name, "name").trim().toLowerCase();
  this.homeDir = Check.notEmpty(homeDir, "homeDir");
  this.configDir = Check.notEmpty(configDir, "configDir");
  this.logDir = Check.notEmpty(logDir, "logDir");
  this.tempDir = Check.notEmpty(tempDir, "tempDir");
  checkAbsolutePath(homeDir, "homeDir");
  checkAbsolutePath(configDir, "configDir");
  checkAbsolutePath(logDir, "logDir");
  checkAbsolutePath(tempDir, "tempDir");
  if (config != null) {
    this.config = new Configuration(false);
    ConfigurationUtils.copy(config, this.config);
  }
  status = Status.UNDEF;
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:36,代码来源:Server.java

示例6: getResource

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Convenience method that returns a resource as inputstream from the
 * classpath.
 * <p>
 * It first attempts to use the Thread's context classloader and if not
 * set it uses the <code>ClassUtils</code> classloader.
 *
 * @param name resource to retrieve.
 *
 * @return inputstream with the resource, NULL if the resource does not
 *         exist.
 */
static InputStream getResource(String name) {
  Check.notEmpty(name, "name");
  ClassLoader cl = Thread.currentThread().getContextClassLoader();
  if (cl == null) {
    cl = Server.class.getClassLoader();
  }
  return cl.getResourceAsStream(name);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:21,代码来源:Server.java

示例7: getResource

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Convenience method that returns a resource as inputstream from the
 * classpath.
 * <p/>
 * It first attempts to use the Thread's context classloader and if not
 * set it uses the <code>ClassUtils</code> classloader.
 *
 * @param name resource to retrieve.
 *
 * @return inputstream with the resource, NULL if the resource does not
 *         exist.
 */
static InputStream getResource(String name) {
  Check.notEmpty(name, "name");
  ClassLoader cl = Thread.currentThread().getContextClassLoader();
  if (cl == null) {
    cl = Server.class.getClassLoader();
  }
  return cl.getResourceAsStream(name);
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:21,代码来源:Server.java

示例8: getResource

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Convenience method that returns a resource as inputstream from the
 * classpath.
 * <p/>
 * It first attempts to use the Thread's context classloader and if not
 * set it uses the <code>ClassUtils</code> classloader.
 *
 * @param name
 *     resource to retrieve.
 * @return inputstream with the resource, NULL if the resource does not
 * exist.
 */
static InputStream getResource(String name) {
  Check.notEmpty(name, "name");
  ClassLoader cl = Thread.currentThread().getContextClassLoader();
  if (cl == null) {
    cl = Server.class.getClassLoader();
  }
  return cl.getResourceAsStream(name);
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:21,代码来源:Server.java

示例9: getPrefixedName

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Returns the prefixed name of a server property.
 *
 * @param name of the property.
 *
 * @return prefixed name of the property.
 */
public String getPrefixedName(String name) {
  return getPrefix() + "." + Check.notEmpty(name, "name");
}
 
开发者ID:naver,项目名称:hadoop,代码行数:11,代码来源:Server.java

示例10: getPrefixedName

import org.apache.hadoop.lib.util.Check; //导入方法依赖的package包/类
/**
 * Returns the prefixed name of a server property.
 *
 * @param name
 *     of the property.
 * @return prefixed name of the property.
 */
public String getPrefixedName(String name) {
  return getPrefix() + "." + Check.notEmpty(name, "name");
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:11,代码来源:Server.java


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