org.bedework.util.misc.Util.buildPath()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(191)

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

Util.buildPath介绍

暂无

代码示例

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public static String makeKey(final String collectionHref,
  2. final String entityName) {
  3. if (entityName == null) {
  4. return collectionHref;
  5. }
  6. return Util.buildPath(false, collectionHref,
  7. "/",
  8. entityName);
  9. }

代码示例来源:origin: org.bedework/bw-caldav-util

  1. public void copyForAlias(final BaseEntityChangeType copy,
  2. final String collectionHref) {
  3. final String[] split = Util.splitName(href);
  4. copy.href = Util.buildPath(href.endsWith("/"), collectionHref,
  5. "/", split[1]);
  6. copy.changedBy = changedBy;
  7. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public static String makePrincipalHref(final String id,
  2. final int whoType) throws AccessException {
  3. if (isPrincipal(id)) {
  4. return id;
  5. }
  6. final String root = fromWho.get(whoType);
  7. if (root == null) {
  8. throw new AccessException(CalFacadeException.unknownPrincipalType);
  9. }
  10. return Util.buildPath(true, root, "/", id);
  11. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public String getHref() {
  2. return Util.buildPath(false, getColPath(),
  3. "/",
  4. getName());
  5. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. private static String getHref(final BwEvent ev) throws Throwable {
  2. return Util.buildPath(false, ev.getColPath(), "/", ev.getName());
  3. }
  4. }

代码示例来源:origin: org.bedework/bw-util-config

  1. @Override
  2. public ResourceBundle newBundle(final String baseName,
  3. final Locale locale,
  4. final String format,
  5. final ClassLoader loader,
  6. final boolean reload)
  7. throws IllegalAccessException, InstantiationException, IOException {
  8. if (!format.equals("java.properties")) {
  9. throw new IllegalArgumentException("unknown format: " + format);
  10. }
  11. final String bundleName = toBundleName(baseName, locale);
  12. final String resourceName = toResourceName(bundleName, "properties");
  13. final ResourceBundle bundle;
  14. try (InputStream stream = new FileInputStream(Util.buildPath(false,
  15. dirPath,
  16. "/",
  17. resourceName))) {
  18. bundle = new PropertyResourceBundle(stream);
  19. }
  20. return bundle;
  21. }
  22. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public String getHref() {
  2. return Util.buildPath(false, getColPath(),
  3. "/",
  4. getName());
  5. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. /**
  2. * @param pr the principal
  3. * @return the path for calendar home for the given principal, e.g. /user/douglm
  4. */
  5. public String getCalendarHomePath(final AccessPrincipal pr) {
  6. if (pr.getKind() == WhoDefs.whoTypeUser) {
  7. return Util.buildPath(BasicSystemProperties.colPathEndsWithSlash,
  8. getUserHomePath(), "/", pr.getAccount());
  9. }
  10. return Util.buildPath(BasicSystemProperties.colPathEndsWithSlash,
  11. getUserHomePath(), "/", pr.getPrincipalRef());
  12. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public void fixNames(final BasicSystemProperties props,
  3. final BwPrincipal principal) {
  4. if (getHref() != null) {
  5. return;
  6. }
  7. String extra = getWordVal();
  8. final String name;
  9. final int pos = extra.lastIndexOf("/");
  10. if (pos < 0) {
  11. name = extra;
  12. extra = "";
  13. } else {
  14. name = extra.substring(pos + 1);
  15. extra = extra.substring(0, pos);
  16. }
  17. setName(name);
  18. setColPath(props, principal, "categories", extra);
  19. setHref(Util.buildPath(false, getColPath(), getName()));
  20. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public void fixNames(final BasicSystemProperties props,
  3. final BwPrincipal principal) {
  4. if (getHref() != null) {
  5. return;
  6. }
  7. setColPath(props, principal, "contacts", null);
  8. setHref(Util.buildPath(false, getColPath(), getUid()));
  9. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public void fixNames(final BasicSystemProperties props,
  3. final BwPrincipal principal) {
  4. if (getHref() != null) {
  5. return;
  6. }
  7. setColPath(props, principal, "filters", null);
  8. setHref(Util.buildPath(false, getColPath(), getName()));
  9. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @NoProxy
  2. @NoDump
  3. @IcalProperty(pindex = PropertyInfoIndex.HREF,
  4. jname = "href",
  5. required = true,
  6. eventProperty = true,
  7. todoProperty = true,
  8. journalProperty = true)
  9. public String getHref() {
  10. return Util.buildPath(false, getColPath(), "/", getName());
  11. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @Override
  2. public void fixNames(final BasicSystemProperties props,
  3. final BwPrincipal principal) {
  4. if (getHref() != null) {
  5. return;
  6. }
  7. setColPath(props, principal, "locations", null);
  8. setHref(Util.buildPath(false, getColPath(), getUid()));
  9. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. final String namePart) {
  2. if (getPublick()) {
  3. setColPath(Util.buildPath(true,
  4. "/public",
  5. "/",
  6. setColPath(Util.buildPath(true,
  7. "/",
  8. homeDir,

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. @NoProxy
  2. @NoDump
  3. public String getEncodedHref() {
  4. final String href = Util.buildPath(false, getColPath(), "/", getName());
  5. if (getRecurrenceId() == null) {
  6. return href;
  7. }
  8. return href + "%23" + getRecurrenceId();
  9. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. public String makeKey() {
  2. if (getEntityName() == null) {
  3. return getCollection().getPath();
  4. }
  5. return Util.buildPath(false, getCollection().getPath(),
  6. "/",
  7. getEntityName());
  8. }

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. final String namePart) {
  2. if (getPublick()) {
  3. setColPath(Util.buildPath(true,
  4. "/public",
  5. "/",
  6. setColPath(Util.buildPath(true,
  7. "/",
  8. homeDir,

代码示例来源:origin: org.bedework.caleng/bw-calendar-engine-facade

  1. /** Set from Calsuite
  2. *
  3. * @param val BwCalsuite
  4. */
  5. @NoDump
  6. public static BwCalSuitePrincipal from(final BwCalSuite val) {
  7. final BwCalSuitePrincipal csp = new BwCalSuitePrincipal();
  8. csp.setPrincipalRef(Util.buildPath(true,
  9. BwPrincipal.calsuitePrincipalRoot,
  10. "/", val.getName()));
  11. csp.setAccount(val.getName());
  12. csp.setGroup(val.getGroup());
  13. csp.setRootCollectionPath(val.getRootCollectionPath());
  14. csp.setSubmissionsRootPath(val.getSubmissionsRootPath());
  15. return csp;
  16. }

相关文章