}
if ( f.getPropertyInfo().getCustomizations().find( ORM_NS, "one-to-one" ) != null )
{
final CPluginCustomization pc = f.getPropertyInfo().getCustomizations().find( ORM_NS, "one-to-one" );
final OneToOne o = JAXB.unmarshal( new DOMSource( pc.element ), OneToOne.class );
if ( o.getName() == null )
{
o.setName( f.getPropertyInfo().getName( false ) );
}
attributes.getOneToOne().add( o );
mapped = true;