}
//Make an inventory of default restricted properties
Set<String> restrictedPreferences = new HashSet<String>();
for (Field field : AgentConfigurationConstants.class.getFields()) {
Restricted restricted = field.getAnnotation(Restricted.class);
if (restricted != null) {
try {
String restrictedProperty = field.get(AgentConfigurationConstants.class).toString();
restrictedPreferences.add(restrictedProperty);
} catch (Exception e) {