本文整理汇总了Java中org.apache.hadoop.registry.client.api.RegistryConstants.PATH_SYSTEM_SERVICES属性的典型用法代码示例。如果您正苦于以下问题:Java RegistryConstants.PATH_SYSTEM_SERVICES属性的具体用法?Java RegistryConstants.PATH_SYSTEM_SERVICES怎么用?Java RegistryConstants.PATH_SYSTEM_SERVICES使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.hadoop.registry.client.api.RegistryConstants
的用法示例。
在下文中一共展示了RegistryConstants.PATH_SYSTEM_SERVICES属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: homePathForUser
/**
* Buld the user path -switches to the system path if the user is "".
* It also cross-converts the username to ascii via punycode
* @param username username or ""
* @return the path to the user
*/
public static String homePathForUser(String username) {
Preconditions.checkArgument(username != null, "null user");
// catch recursion
if (username.startsWith(RegistryConstants.PATH_USERS)) {
return username;
}
if (username.isEmpty()) {
return RegistryConstants.PATH_SYSTEM_SERVICES;
}
// convert username to registry name
String convertedName = convertUsername(username);
return RegistryPathUtils.join(RegistryConstants.PATH_USERS,
encodeForRegistry(convertedName));
}