/* * Copyright (c) 2010 Lockheed Martin Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.eurekastreams.server.action.execution.settings; import java.io.Serializable; import org.eurekastreams.commons.actions.TaskHandlerExecutionStrategy; import org.eurekastreams.commons.actions.context.ActionContext; import org.eurekastreams.commons.actions.context.TaskHandlerActionContext; import org.eurekastreams.commons.server.UserActionRequest; import org.eurekastreams.server.domain.Person; import org.eurekastreams.server.persistence.mappers.db.UpdatePersonMapper; import org.eurekastreams.server.persistence.mappers.requests.UpdatePersonResponse; /** * Strategy for updating person record in the system. */ public class RefreshPersonExecution implements TaskHandlerExecutionStrategy<ActionContext> { /** * Mapper to update person in database. */ private UpdatePersonMapper personMapper; /** * Constructor. * * @param inPersonMapper * mapper to update a person. */ public RefreshPersonExecution(final UpdatePersonMapper inPersonMapper) { personMapper = inPersonMapper; } /** * Refresh person in the system. * * @param inActionContext * The action context * * @return true on success. */ @Override public Serializable execute(final TaskHandlerActionContext<ActionContext> inActionContext) { Person ldapPerson = (Person) inActionContext.getActionContext().getParams(); UpdatePersonResponse response = personMapper.execute(ldapPerson); // Queue async action to update cache if necessary if (response.wasUserUpdated()) { inActionContext.getUserActionRequests().add( new UserActionRequest("cachePerson", null, response.getPersonId())); } return Boolean.TRUE; } }