Skip to content

Commit 9a3bbf8

Browse files
committed
Merge branch '6.4.x'
2 parents fd00247 + 45da5c9 commit 9a3bbf8

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

core/src/test/java/org/springframework/security/access/annotation/BusinessServiceImpl.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.security.access.annotation;
1818

19+
import java.io.Serial;
1920
import java.util.ArrayList;
2021
import java.util.List;
2122

@@ -24,6 +25,9 @@
2425
*/
2526
public class BusinessServiceImpl<E extends Entity> implements BusinessService {
2627

28+
@Serial
29+
private static final long serialVersionUID = -4249394090237180795L;
30+
2731
@Override
2832
@Secured({ "ROLE_USER" })
2933
public void someUserMethod1() {

core/src/test/java/org/springframework/security/access/annotation/ExpressionProtectedBusinessServiceImpl.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.security.access.annotation;
1818

19+
import java.io.Serial;
1920
import java.util.ArrayList;
2021
import java.util.List;
2122

@@ -25,6 +26,9 @@
2526

2627
public class ExpressionProtectedBusinessServiceImpl implements BusinessService {
2728

29+
@Serial
30+
private static final long serialVersionUID = -3320014879907436606L;
31+
2832
@Override
2933
public void someAdminMethod() {
3034
}

core/src/test/java/org/springframework/security/access/annotation/Jsr250BusinessServiceImpl.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.security.access.annotation;
1818

19+
import java.io.Serial;
1920
import java.util.ArrayList;
2021
import java.util.List;
2122

@@ -28,6 +29,9 @@
2829
@PermitAll
2930
public class Jsr250BusinessServiceImpl implements BusinessService {
3031

32+
@Serial
33+
private static final long serialVersionUID = -7550211450382764339L;
34+
3135
@Override
3236
@RolesAllowed("ROLE_USER")
3337
public void someUserMethod1() {

0 commit comments

Comments
 (0)