Created
July 12, 2018 11:58
-
-
Save john-nash-rs/6e5cf1674f0adbd541fd8794b79ec735 to your computer and use it in GitHub Desktop.
Configuration file for dropwizard application
This file contains 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
import io.dropwizard.Configuration; | |
/** | |
* Created by harshvardhan on 12/07/18. | |
*/ | |
public class MyConfiguration extends Configuration { | |
private String url; | |
public String getUrl() { | |
return url; | |
} | |
public void setUrl(String url) { | |
this.url = url; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment