line break
[org.ibex.mail.git] / src / org / ibex / mail / Login.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.mail;
6
7 // FEATURE: SASL
8
9 /** essentially a partial function from username/password/protocol to root mailbox */
10 public interface Login {
11
12     public Account anonymous();
13     public Account login(String user, String pass);
14     public Object  login(String user, String pass, Class protocol);
15
16 }