String compare = username;
compare = MediaWiki.encode(username);
if (cs == null) {
throw new CookieException("Cookiearray is null.");
}
if (cs.isEmpty()) {
throw new CookieException("No cookies found.");
} else {
if (cs.containsValue(compare)) {
if (LOGGER.isInfoEnabled())
LOGGER.info("Logged in as: " + username);
login.setup(username, true);
return;
} else {
throw new CookieException(
"Login failed: Check Username and Password.");
}