Created
June 23, 2020 07:23
-
-
Save nikhil3000/643f2933322892792f41175425b9d5ba 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
@Valid | |
@NotNull | |
private DataSourceFactory database = new DataSourceFactory(); | |
@JsonProperty("database") | |
public void setDataSourceFactory(DataSourceFactory factory) { | |
this.database = factory; | |
} | |
@JsonProperty("database") | |
public DataSourceFactory getDataSourceFactory() { | |
return database; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment