Use Getter/Setter for FernetConfiguration (#2743)

This commit is contained in:
Matt 2022-02-14 02:42:06 -08:00 committed by GitHub
parent 7ca7f087ab
commit 4b77d5630b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
}