AuthenticationFormat.java 199 Bytes
package fi.codecrew.moya.beans.auth;

import fi.codecrew.moya.AuthenticationResult;

public interface AuthenticationFormat {

	AuthenticationResult authenticate(String username, String password);

}