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


Java RegistryUtils.homePathForUser方法代码示例

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


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

示例1: testComplexUsernames

import org.apache.hadoop.registry.client.binding.RegistryUtils; //导入方法依赖的package包/类
@Test
public void testComplexUsernames() throws Throwable {
  operations.mknode("/users/user with spaces", true);
  operations.mknode("/users/user-with_underscores", true);
  operations.mknode("/users/000000", true);
  operations.mknode("/users/-storm", true);
  operations.mknode("/users/windows\\ user", true);
  String home = RegistryUtils.homePathForUser("\u0413PA\u0414_3");
  operations.mknode(home, true);
  operations.mknode(
      RegistryUtils.servicePath(home, "service.class", "service 4_5"),
      true);

  operations.mknode(
      RegistryUtils.homePathForUser("[email protected]"),
      true);
  operations.mknode(
      RegistryUtils.homePathForUser("hbase/[email protected]"),
      true);
  home = RegistryUtils.homePathForUser("ADMINISTRATOR/127.0.0.1");
  assertTrue("No 'administrator' in " + home, home.contains("administrator"));
  operations.mknode(
      home,
      true);

}
 
开发者ID:naver,项目名称:hadoop,代码行数:27,代码来源:TestRegistryOperations.java

示例2: homeDir

import org.apache.hadoop.registry.client.binding.RegistryUtils; //导入方法依赖的package包/类
/**
 * Get the path to a user's home dir
 * @param username username
 * @return a path for services underneath
 */
protected String homeDir(String username) {
  return RegistryUtils.homePathForUser(username);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:9,代码来源:RegistryAdminService.java


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