From d0cf8a40bd3de778db14327c5416397526c1726d Mon Sep 17 00:00:00 2001 From: Michael Hirsch Date: Fri, 8 Jul 2016 13:32:02 +0200 Subject: [PATCH] fix javadoc link Signed-off-by: Michael Hirsch --- .../org/eclipse/hawkbit/im/authentication/SpPermission.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/im/authentication/SpPermission.java b/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/im/authentication/SpPermission.java index 7d52b7a01..daf5f0dd9 100644 --- a/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/im/authentication/SpPermission.java +++ b/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/im/authentication/SpPermission.java @@ -367,7 +367,7 @@ public final class SpPermission { /** * Spring security eval hasAnyRole expression to check if the spring * context contains the anoynmous role or the controller specific role - * {@link SpPermission#CONTROLLER_ROLE}. + * {@link SpringEvalExpressions#CONTROLLER_ROLE}. */ public static final String IS_CONTROLLER = "hasAnyRole('" + CONTROLLER_ROLE_ANONYMOUS + "', '" + CONTROLLER_ROLE + "')"; @@ -375,7 +375,7 @@ public final class SpPermission { /** * Spring security eval hasAuthority expression to check if the spring * context contains the role to allow controllers to download specific - * role {@link SpPermission#CONTROLLER_DOWNLOAD_ROLE}. + * role {@link SpringEvalExpressions#CONTROLLER_DOWNLOAD_ROLE} */ public static final String HAS_CONTROLLER_DOWNLOAD = HAS_AUTH_PREFIX + CONTROLLER_DOWNLOAD_ROLE + HAS_AUTH_SUFFIX;