Commit bed8c95a by Daniel Roth

changed constructor visibility from private to protected in order to be able to…

changed constructor visibility from private to protected in order to be able to derive from Application
parent 3ef5c86f
...@@ -36,7 +36,7 @@ public class Application implements Serializable { ...@@ -36,7 +36,7 @@ public class Application implements Serializable {
private final String serviceUrl; private final String serviceUrl;
private final StatusInfo statusInfo; private final StatusInfo statusInfo;
private Application(String healthUrl, String managementUrl, protected Application(String healthUrl, String managementUrl,
String serviceUrl, String name, String id, StatusInfo statusInfo) { String serviceUrl, String name, String id, StatusInfo statusInfo) {
this.healthUrl = healthUrl; this.healthUrl = healthUrl;
this.managementUrl = managementUrl; 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