Fixed member path use.

This commit is contained in:
Christian P. MOMON 2023-07-20 12:08:06 +02:00
parent 080f72a374
commit cc545c217e

View file

@ -516,7 +516,7 @@ public class Organization extends PathPropertyList
{
LocalDate result;
result = getDate("organization.memberof." + this.federation.getName() + ".enddate");
result = getDate("organization.memberof." + this.federation.getTechnicalName() + ".enddate");
//
return result;
@ -548,7 +548,7 @@ public class Organization extends PathPropertyList
{
String result;
result = get("organization.memberof." + this.federation.getName() + ".enddate");
result = get("organization.memberof." + this.federation.getTechnicalName() + ".enddate");
//
return result;
@ -586,7 +586,7 @@ public class Organization extends PathPropertyList
{
LocalDate result;
result = getDate("organization.memberof." + this.federation.getName() + ".startdate");
result = getDate("organization.memberof." + this.federation.getTechnicalName() + ".startdate");
//
return result;
@ -618,7 +618,7 @@ public class Organization extends PathPropertyList
{
String result;
result = get("organization.memberof." + this.federation.getName() + ".startdate");
result = get("organization.memberof." + this.federation.getTechnicalName() + ".startdate");
//
return result;