Class LoginService

java.lang.Object
crow.game.login.server.LoginService

public class LoginService extends Object
Service object which contains the logic for running a login service. It's a semi-singleton(1) as it's shared across all the LoginSession instances (therefore every client connection) but it's state is encapsulated in other objects, such as ActiveUserCollection and UserAuthenticator.

(1) it does not need to be a singleton.