/*
 * Copyright (c) 2004 Brian McCallister. All Rights Reserved.
 */
package org.skife.gear.service;

import org.skife.gear.ServiceException;

public interface Authenticator
{
    void authenticate(String login, String pass) throws ServiceException;
}
