Can RequestFactory handle composite primary keys?
The documentation mentions that entities must implement getId()
; how should this be implemented in the case where entities do not have a single "id" field, but rather have multiple foreign key fields that together constitute a composite primary key?
In GWT 2.1.1, the Id and Version properties may be of any type that RequestFactory knows how to transport. Basically, any primitive type (
int
), boxed type (Integer
), or any object that has an associated Proxy type. You don't have to reduce a composite id to a String yourself; the RF plumbing can take care of composite keys automatically by using the persistent id of an entity-type key or the serialized state of a value-type key.Using the previously-posted example:
If you can't reduce the identity to a single
getId()
property on the domain type, you can use aLocator
to provide an externally-defined id and version property. For example:The DevGuide linked from the question is a bit out of date with respect to RequestFactory changes in 2.1.1