Skip to content

Instantly share code, notes, and snippets.

@MuellerConstantin
MuellerConstantin / AclClass.java
Last active March 3, 2021 16:33
Spring Data ACL permission filtering support for persistence layer
import lombok.*;
import org.springframework.data.annotation.Immutable;
import javax.persistence.*;
@Entity
@Immutable
@Table(name = "acl_class")
@AllArgsConstructor
@NoArgsConstructor