X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fmail%2FLogin.java;h=77739ce3e8576339a0c5e7689b75d320a5a39e6a;hb=c6c34cf552ed4c1691b1a97388f5a09827f2e31b;hp=a9bf4b4a56254b808e498e4aa83b2da6e75d1196;hpb=11fbf4c3e89a8fb5c05056e94264d7490e9911b0;p=org.ibex.mail.git diff --git a/src/org/ibex/mail/Login.java b/src/org/ibex/mail/Login.java index a9bf4b4..77739ce 100644 --- a/src/org/ibex/mail/Login.java +++ b/src/org/ibex/mail/Login.java @@ -1,11 +1,14 @@ -package org.ibex.mail; +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. -// FEATURE: SASL +package org.ibex.mail; /** essentially a partial function from username/password/protocol to root mailbox */ public interface Login { public Account anonymous(); public Account login(String user, String pass); + public Object login(String user, String pass, Class protocol); }