is it possible to override the default naming?
for example i have domain:
Notice the finder is 'findPropertysByOrganization'. Id like 'findPropertiesByOrganization'. Not critical, just a PITA.Code:@RooJavaBean @RooToString @RooEntity(finders = { "findPropertysByOrganization" }) public class Property { @OneToOne private Address address; @ManyToOne private Organization organization; @OneToMany(cascade = CascadeType.ALL, mappedBy = "property") private Set<ForeclosureNotice> foreclosureNotices = new HashSet<ForeclosureNotice>(); @OneToMany(cascade = CascadeType.ALL) private Set<Document> documents = new HashSet<Document>(); }


Reply With Quote