void processProperty(
JpaEntity entity,
JpaClassDescriptor descriptor,
JpaPropertyDescriptor property) {
JpaAttributes attributes = entity.getAttributes();
if (attributes.getAttribute(property.getName()) != null) {
return;
}
if (property.isDefaultNonRelationalType()) {
JpaBasic attribute = new JpaBasic();
attribute.setPropertyDescriptor(property);
attribute.setName(property.getName());
attributes.getBasicAttributes().add(attribute);
}
else {
String path = descriptor.getManagedClass().getName()
+ "."
+ property.getName();