All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cornell.mannlib.vitro.webapp.auth.identifier.UserBasedIdentifierBundleFactory Maven / Gradle / Ivy

/* $This file is distributed under the terms of the license in LICENSE$ */

package edu.cornell.mannlib.vitro.webapp.auth.identifier;

import edu.cornell.mannlib.vitro.webapp.beans.UserAccount;

/**
 * Creates an IdentifierBundle based only on the characteristics of the current
 * user, without considering other aspects of the current request.
 */
public interface UserBasedIdentifierBundleFactory extends
		IdentifierBundleFactory {
	/**
	 * Get the IdentifierBundle for this user. If user is null, return an empty
	 * bundle. Never returns null.
	 */
	public IdentifierBundle getIdentifierBundleForUser(UserAccount user);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy