Commit f531e993 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

#supportsPasswordRetrieval overridden to return false.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2788 b35dd754-fafc-0310-a699-88a17e54d16e
parent 5a77254d
......@@ -27,4 +27,8 @@ public class NativeUserProvider extends DefaultUserProvider {
public boolean isReadOnly() {
return true;
}
public boolean supportsPasswordRetrieval() {
return false;
}
}
......@@ -37,4 +37,8 @@ public class POP3UserProvider extends DefaultUserProvider {
public boolean isReadOnly() {
return true;
}
public boolean supportsPasswordRetrieval() {
return false;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment