}
if (!Modifier.isTransient(propertyField.getModifiers())) {
// if the property is not transient:
// get the property.
AccessController.doPrivileged(new SetAccessibleAction(propertyField, true));
//propertyField.setAccessible (true);
Object propertyObj = propertyField.get(this);
String property = (propertyObj == null) ? null : String.valueOf(propertyObj);
// add into reference.
ref.add(new StringRefAddr(propertyKey, property));