配置 Eclipse RCP 更新管理器

发布于 2024-11-30 14:58:37 字数 620 浏览 1 评论 0原文

我完成了 Eclipse RCP 应用程序并想要配置更新管理器。我的产品是基于功能的,更新正在正常工作,但我想限制用户。即强制一个特殊的更新站点或仅显示分组等。

我尝试使用策略,但它不起作用:

public class EPolicy extends Policy {
    public EPolicy() {
        setRepositoriesVisible(false);
        setGroupByCategory(false);
        setShowLatestVersionsOnly(false);
        setRestartPolicy(RESTART_POLICY_FORCE);
    }
}

在激活器中注册:

public void start(BundleContext context) throws Exception {
    super.start(context);
    Policy policy = new EPolicy();
    context.registerService(Policy.class.getName(), policy, null);
}

我错过了什么吗?

i finished my Eclipse RCP Application and wanted to configure the update manager. My Product is feature based and updates are working like they should, but i want to limit the user. i.e. force a special update site or display only grouped etc.

I tried using Policy but it does not work:

public class EPolicy extends Policy {
    public EPolicy() {
        setRepositoriesVisible(false);
        setGroupByCategory(false);
        setShowLatestVersionsOnly(false);
        setRestartPolicy(RESTART_POLICY_FORCE);
    }
}

registering in the Activator:

public void start(BundleContext context) throws Exception {
    super.start(context);
    Policy policy = new EPolicy();
    context.registerService(Policy.class.getName(), policy, null);
}

am i missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨的味道风的声音 2024-12-07 14:58:37

尝试将您的政策设置为更高的排名,

public void start(BundleContext context) throws Exception {
    super.start(context);
    Policy policy = new EPolicy();
    Dictionary props = new Hashtable();
    props.put(org.osgi.framework.Constants.SERVICE_RANKING, new Integer(99));
    context.registerService(Policy.class.getName(), policy, props);
}

Try to set your policy with higher ranking,

public void start(BundleContext context) throws Exception {
    super.start(context);
    Policy policy = new EPolicy();
    Dictionary props = new Hashtable();
    props.put(org.osgi.framework.Constants.SERVICE_RANKING, new Integer(99));
    context.registerService(Policy.class.getName(), policy, props);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文