package org.subethamail.smtp.server;
/**
* SessionIdFactory creates reasonable unique identifiers which are applicable
* to identify a session in the log files.
*/
public interface SessionIdFactory {
/**
* Returns a new identifier.
*/
String create();
}