Hello,

> -----Original Message-----

> this is the exception stack trace :
> 
> java.lang.ClassCastException:
> edu.broglie.ws.dto.AppFlulog
>       at
> edu.broglie.ws.dto.AppAppcli.equals(AppAppcli.java:65)

your implementation of equals() does not fulfil the
contract specified in the javadoc of that method.
It should return false rather than throw a ClassCastException.

63:  public boolean equals(Object other) {
64:    boolean egal=true;
65:    egal&=this.getIdtappcli().equals(((AppAppcli)other).getIdtappcli());
66:    return egal;


Olli

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to