001/*
002 *  Copyright 2020 Anyware Services
003 *
004 *  Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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 */
016package org.ametys.plugins.repository.data.holder.values;
017
018/**
019 * Result of a synchronization
020 */
021public class SynchronizationResult
022{
023    private boolean _hasChanged;
024
025    /**
026     * Determines if some values have changed during the synchronization
027     * @return <code>true</code> if some values have changed during the synchronization, <code>false</code> otherwise
028     */
029    public boolean hasChanged()
030    {
031        return _hasChanged;
032    }
033
034    /**
035     * Set to <code>true</code> if a value hasChanged during the synchronization
036     * @param hasChanged <code>true</code> if a value hasChanged during the synchronization, <code>false</code> otherwise
037     */
038    public void setHasChanged(boolean hasChanged)
039    {
040        _hasChanged = hasChanged;
041    }
042    
043    /**
044     * Aggregate the given result to the current one
045     * @param result the result to aggregate to the current one
046     */
047    public void aggregateResult(SynchronizationResult result)
048    {
049        if (result != null)
050        {
051            setHasChanged(hasChanged() || result.hasChanged());
052        }
053    }
054}