How to configure a property with Managed type referred by Managed object in model block?

I’d like to know how to configure a property with Managed type referred by another Managed object in model block. There are two Managed models, one of them refers to the other. The former interface is like… @Managed public interface JpaUnit { String getUnit(); void setUnit(String unit); …