org.apache.felix.framework.util.Util.getResourcePackage()方法的使用及代码示例

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

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

Util.getResourcePackage介绍

暂无

代码示例

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public Enumeration getResources(String name) throws ResourceNotFoundException
  2. {
  3. // Get the package of the target class.
  4. String pkgName = Util.getResourcePackage(name);
  5. // See if we have a resolved package for the resource's package.
  6. // If so, loop through all package sources and aggregate any
  7. // matching resource enumerations.
  8. ResolvedPackage rp = (ResolvedPackage) m_pkgMap.get(pkgName);
  9. if (rp != null)
  10. {
  11. Enumeration urls = m_exporter.getResourcesByDelegation(name);
  12. if (urls != null)
  13. {
  14. return urls;
  15. }
  16. // Don't throw ResourceNotFoundException because module
  17. // dependencies support split packages.
  18. }
  19. return null;
  20. }

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public URL getResource(String name) throws ResourceNotFoundException
  2. {
  3. // Get the package of the target class.
  4. String pkgName = Util.getResourcePackage(name);
  5. ResolvedPackage rp = (ResolvedPackage) m_pkgMap.get(pkgName);
  6. if (rp != null)
  7. {
  8. URL url = m_exporter.getResourceByDelegation(name);
  9. if (url != null)
  10. {
  11. return url;
  12. }
  13. // Don't throw ResourceNotFoundException because module
  14. // dependencies support split packages.
  15. }
  16. return null;
  17. }

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public Enumeration getResources(String name) throws ResourceNotFoundException
  2. {
  3. Enumeration urls = null;
  4. // Get the package of the target class.
  5. String pkgName = Util.getResourcePackage(name);
  6. // Only check when the package of the target resource is
  7. // the same as the package for the wire.
  8. if (m_capability.getNamespace().equals(ICapability.PACKAGE_NAMESPACE) &&
  9. m_capability.getProperties().get(ICapability.PACKAGE_PROPERTY).equals(pkgName))
  10. {
  11. urls = m_exporter.getResourcesByDelegation(name);
  12. // If no resource was found, then we must throw an exception
  13. // since the exporter for this package did not contain the
  14. // requested class.
  15. if (urls == null)
  16. {
  17. throw new ResourceNotFoundException(name);
  18. }
  19. }
  20. return urls;
  21. }

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public URL getResource(String name) throws ResourceNotFoundException
  2. {
  3. URL url = null;
  4. // Get the package of the target class.
  5. String pkgName = Util.getResourcePackage(name);
  6. // Only check when the package of the target resource is
  7. // the same as the package for the wire.
  8. if (m_capability.getNamespace().equals(ICapability.PACKAGE_NAMESPACE) &&
  9. m_capability.getProperties().get(ICapability.PACKAGE_PROPERTY).equals(pkgName))
  10. {
  11. // Delegate to the exporting module, rather than its
  12. // content, so that it can follow any internal wires it may have
  13. // (e.g., if the package has multiple sources).
  14. url = m_exporter.getResourceByDelegation(name);
  15. // If no resource was found, then we must throw an exception
  16. // since the exporter for this package did not contain the
  17. // requested class.
  18. if (url == null)
  19. {
  20. throw new ResourceNotFoundException(name);
  21. }
  22. }
  23. return url;
  24. }

代码示例来源:origin: apache/felix

  1. String pkgName = Util.getResourcePackage(name);

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. : Util.getResourcePackage(name);

代码示例来源:origin: apache/felix

  1. String pkgName = (isClass) ? Util.getClassPackage(name) : Util.getResourcePackage(name);

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. String pkgName = Util.getResourcePackage(name);

相关文章