Fixed legal URL get in service class.

This commit is contained in:
Christian P. MOMON 2021-06-19 15:56:49 +02:00
parent 378bde2d73
commit b36a6cc6e9

View file

@ -371,7 +371,7 @@ public class Service extends PathPropertyList
String value = get("service.legal.url", "service.legal"); String value = get("service.legal.url", "service.legal");
result = getURL(value); result = URLUtils.of(value);
// //
return result; return result;
@ -780,6 +780,11 @@ public class Service extends PathPropertyList
return result; return result;
} }
/**
* Gets the URL all.
*
* @return the URL all
*/
public URLSet getURLAll() public URLSet getURLAll()
{ {
URLSet result; URLSet result;