This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Could anyone help me with this? The error it gives: The operator named == is not defined for the argument type(s) java.lang.String, char public void validateSecurity(String loginId, String progId, String funcId, OfficeUserBean user) throws NoAccessException, db.NoConnectionException, db.DBException { try { if (user.getSuperUser() == 'X') { return; } else { ----- ----- Thank You, Naveen
Andrew Shafer
Ranch Hand
Joined: Jan 19, 2001
Posts: 338
posted
0
The error tells you what is wrong. You are trying to compare a String with a char with ==, which is not defined. Off the top of my head: