Initial checkin of apps/i2pbote/**

This commit is contained in:
HungryHobo
2009-11-16 07:28:14 +00:00
parent 5b139f9246
commit 43b437fc58
121 changed files with 7546 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package i2p.bote.network;
import i2p.bote.EmailDestination;
public class EmailAddressResolver {
/**
* Looks up a key pair for an email address. This method blocks.
* The local address book is searched first, then the distributed
* email directory.
* @param emailAddress
* @return An <code>EmailDestination</code>, or <code>null</code> if none is found
*/
public EmailDestination getDestination(String emailAddress) {
// TODO
return null;
}
}