00001 /* 00002 * AuthenticatorImpl.java 00003 * 00004 * Created on May 13, 2005, 4:28 PM 00005 * Created by Detro - 566/2145 00006 */ 00007 00008 package org.jaebi.server.auth; 00009 00019 public class AuthenticatorImpl implements Authenticator { 00023 public AuthenticatorImpl() {} 00024 00033 public Session getAuthentication(String nick) { 00034 return new SessionImpl(); 00035 } 00036 00037 }