60 def prepareClientsSet(self, configurationAttributes):
61 clientsSet = HashSet()
62 if (
not configurationAttributes.containsKey(
"allowed_clients")):
65 allowedClientsList = configurationAttributes.get(
"allowed_clients").getValue2()
66 if (StringHelper.isEmpty(allowedClientsList)):
67 print "UmaRptPolicy. The property allowed_clients is empty" 70 allowedClientsListArray = StringHelper.split(allowedClientsList,
",")
71 if (ArrayHelper.isEmpty(allowedClientsListArray)):
72 print "UmaRptPolicy. No clients specified in allowed_clients property" 77 count = len(allowedClientsListArray)
79 client = allowedClientsListArray[i]
80 clientsSet.add(client)