public boolean equals()

in cafe/src/main/java/org/apache/camel/example/cafe/Drink.java [48:57]


    public boolean equals(Object o) {
        if (o instanceof Drink) {
            Drink that = (Drink)o;
            return ObjectHelper.equal(this.drinkType, that.drinkType) 
                && ObjectHelper.equal(this.orderNumber, that.orderNumber)
                && ObjectHelper.equal(this.iced, that.iced)
                && ObjectHelper.equal(this.shots, that.shots);                 
        }
        return false;
    }