kCura.WinEDDS.Service.Replacement.KeplerUserManager
namespace kCura.WinEDDS.Service.Replacement
{
public class KeplerUserManager : KeplerManager, IUserManager
{
public KeplerUserManager(IServiceProxyFactory serviceProxyFactory, IServiceExceptionMapper exceptionMapper, Func<string> correlationIdFunc);
public void Logout();
public DataSet RetrieveAllAssignableInCase(int caseContextArtifactID);
public bool Login(string emailAddress, string password);
public string GenerateDistributedAuthenticationToken(bool retryOnFailure = true);
public bool LoggedIn();
public bool AttemptReLogin(bool retryOnFailure = true);
}
}