remove comment
[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 /** essentially a partial function from username/password/protocol to root mailbox */
8 public interface Login {
9
10     public Account anonymous();
11     public Account login(String user, String pass);
12     public Object  login(String user, String pass, Class protocol);
13
14 }