Last active
August 10, 2020 09:21
-
-
Save rafaelbrizola/2df6e1364c14824a7fb8fc86fd131c83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyConfiguration extends Configuration | |
{ | |
@Valid | |
@NotNull | |
@JsonProperty("allowedOrigin") | |
private String allowedOrigin; | |
public String getAllowedOrigin() | |
{ | |
return allowedOrigin; | |
} | |
public void setAllowedOrigin(String allowedOrigin) | |
{ | |
this.allowedOrigin = allowedOrigin; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment