Annotation Interface HasMany
Indicates that the annotated field represents a "has many" relationship with another class. This annotation is typically used by our frameworks to define the relationship between two classes for purpose of automating the creation of web services.
Example usage:
public class Customer {
// ...
@HasMany
private List<Order> orders;
// ...
}
- See Also: