From cebc368738addb0b5e349800d6cc551c6d8581fb Mon Sep 17 00:00:00 2001 From: j2blake Date: Fri, 1 Jul 2011 16:13:42 +0000 Subject: [PATCH] NIHVIVO-2279 create new methods on SelfEditingConfiguration, to help associate UserAccounts with Individual profiles. --- .../UserAccountsAssociatedProfileHelper.java | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/admin/UserAccountsAssociatedProfileHelper.java diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/admin/UserAccountsAssociatedProfileHelper.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/admin/UserAccountsAssociatedProfileHelper.java deleted file mode 100644 index 95bfef557..000000000 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/accounts/admin/UserAccountsAssociatedProfileHelper.java +++ /dev/null @@ -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."); - } - -}