NIHVIVO-2279 create new methods on SelfEditingConfiguration, to help associate UserAccounts with Individual profiles.

This commit is contained in:
j2blake 2011-07-01 16:13:42 +00:00
parent 555e068d6a
commit cebc368738

View file

@ -1,26 +0,0 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
package edu.cornell.mannlib.vitro.webapp.controller.accounts.admin;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import edu.cornell.mannlib.vitro.webapp.beans.UserAccount;
/**
* TODO
*/
public class UserAccountsAssociatedProfileHelper {
private static final Log log = LogFactory
.getLog(UserAccountsAssociatedProfileHelper.class);
/**
* This profile (if it exists) should be associated with this UserAccount.
* No other profile should be associated with this UserAccount. Make it so.
*/
public static void reconcile(UserAccount userAccount,
String associatedProfileUri) {
log.error("UserAccountsAssociatedProfileHelper.reconcile() not implemented.");
}
}