001    /**
002     * Copyright 2005-2011 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.rice.kew.useroptions;
017    
018    import java.util.Collection;
019    import java.util.List;
020    import java.util.Map;
021    
022    
023    /**
024     * Sits on top of the UserOptionsTable and manages certain aspects of action list refresh behaviors.
025     * This service could probably be broken up and it's dao put somewhere else and injected in the appropriate places.
026     *
027     * @author Kuali Rice Team (rice.collab@kuali.org)
028     */
029    public interface UserOptionsService {
030        Collection<UserOptions> findByWorkflowUser(String principalId);
031        List<UserOptions> findByUserQualified(String principalId, String likeString);
032        void save(UserOptions userOptions);
033        void save(String principalId, Map<String,String> optionsMap);
034        void save(String principalId, String optionId, String optionValue);
035        void deleteUserOptions(UserOptions userOptions);
036        UserOptions findByOptionId(String optionId, String principalId);
037        Collection<UserOptions> findByOptionValue(String optionId, String optionValue);
038        boolean refreshActionList(String principalId);
039        void saveRefreshUserOption(String principalId);
040    }