How can I defined the class in ice?

in Help Center
HI,
if i have two classes (A and
which are many to many .how can I defined them?
Class A{
private long id;
private Set<B> agentGroups = new HashSet<B>(0)
}
Class B{
private long id;
private Set<A> agents = new HashSet<A>(0);
}
if i have two classes (A and

Class A{
private long id;
private Set<B> agentGroups = new HashSet<B>(0)
}
Class B{
private long id;
private Set<A> agents = new HashSet<A>(0);
}
0
Comments
Best regards,
Bernard