Commit 037b4d16 by Johannes Stelzer

Merge pull request #93 from tehcyx/master

changed constructor visibility from private to protected in order to be able to derive from Application.
parents 3ef5c86f bed8c95a
......@@ -36,7 +36,7 @@ public class Application implements Serializable {
private final String serviceUrl;
private final StatusInfo statusInfo;
private Application(String healthUrl, String managementUrl,
protected Application(String healthUrl, String managementUrl,
String serviceUrl, String name, String id, StatusInfo statusInfo) {
this.healthUrl = healthUrl;
this.managementUrl = managementUrl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment