class Bestellung{ private String produkt; private Bestellung next; public Bestellung getNext() { return next; } ... } class Kunde { ... private Bestellung erstebestellung; public Bestellung getErstebestellung() { return erstebestellung; } ... }