- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
public static String getPolicyByProtection(String protection) {
for (final Map.Entry<String, Protection> entry : getProtectionTable().entrySet()) {
if (StringUtils.equalsIgnoreCase(protection, entry.getKey())) {
return entry.getValue().policy;
}
}
return null;
}
Комментарии (0) RSS
Добавить комментарий