Rename subscriber to member

This commit is contained in:
Konstantinos Triantafyllou 2020-09-08 13:08:44 +00:00
parent 808fe76fdc
commit a42f2db850
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class AuthorizationService {
*
* Id = EE, EGI, etc
* */
public String subscriber(String type, String id) {
public String member(String type, String id) {
return type.toUpperCase() + "_" + id.toUpperCase();
}
}