1 /*
2 * Joey and its relative products are published under the terms
3 * of the Apache Software License.
4 */
5 /*
6 * Created on 2004/01/12
7 */
8 package org.asyrinx.joey.user;
9
10 /***
11 * @author akima
12 */
13 public interface UserCertifier {
14
15 ApplicationUser canLogin(String userId, String password);
16
17 }