Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经通过 Com4j 通过包装类将 HP ALM 12.5 与 Java 连接起来。要获取发布和周期详细信息,我需要访问 ReleaseFolderFactory 对象。你能帮我找到使用Java的方法吗?任何帮助将不胜感激。
您可以使用以下方法从连接对象中获取 ReleaseFolderFactory 对象ITDConnection3.releaseFolderFactory():
ITDConnection3.releaseFolderFactory()
ITDConnection3 conn = .... IReleaseFolderFactory releaseFolderFactory = conn.releaseFolderFactory().queryInterface(IReleaseFolderFactory.class);