如何正确使用限制注释和标签

发布于 2024-10-15 23:30:48 字数 85 浏览 1 评论 0原文

我想在接缝应用程序中使用@Restrict。我的一个场景包含一系列操作。我需要限制每一个动作还是只限制开始动作?除第一个操作外的所有操作均从第一个操作调用。

I would like to use @Restrict in seam application. One of my scenario contains a series of actions. Do i need to restrict each and every action or only the starting action? All the actions except first is invoked from first action.

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

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

发布评论

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

评论(1

有深☉意 2024-10-22 23:30:48

如果它们是私有方法,那么您不需要限制它们。
但是,如果它们是公共方法,则应该限制它们,因为可以从参数调用方法。

如果您使用@Restrict注释来注释class,则所有方法都将受到限制。

If they are private methods then you don't need to restrict them.
However, if they are public methods, you should restrict them, because it is possible to call methods from the parameter.

If you annotate the class with the @Restrict annotation, then all the methods will be restricted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文