Files
alfresco-community-repo/source/java/org/alfresco/repo/web/auth/TenantAuthentication.java
2013-08-20 17:17:31 +00:00

14 lines
314 B
Java

package org.alfresco.repo.web.auth;
public interface TenantAuthentication
{
/**
* Authenticate user against tenant
*
* @param email
* @param tenant
* @return true => authenticated, false => not authenticated
*/
boolean authenticateTenant(String username, String tenant);
}