mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 12:36:56 +00:00
Use Getter/Setter for FernetConfiguration (#2743)
This commit is contained in:
parent
7ca7f087ab
commit
4b77d5630b
@ -14,16 +14,11 @@
|
||||
package org.openmetadata.catalog.fernet;
|
||||
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class FernetConfiguration {
|
||||
|
||||
@NotEmpty private String fernetKey;
|
||||
|
||||
public String getFernetKey() {
|
||||
return fernetKey;
|
||||
}
|
||||
|
||||
public void setFernetKey(String fernetKey) {
|
||||
this.fernetKey = fernetKey;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user