Line data Source code
1 : // Copyright (C) 2021 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.extensions.common; 16 : 17 : import com.google.auto.value.AutoValue; 18 : 19 : /** The difference between two {@link ChangeInfo}s returned by {@link ChangeInfoDiffer}. */ 20 : @AutoValue 21 2 : public abstract class ChangeInfoDifference { 22 : 23 : public abstract ChangeInfo oldChangeInfo(); 24 : 25 : public abstract ChangeInfo newChangeInfo(); 26 : 27 : public abstract ChangeInfo added(); 28 : 29 : public abstract ChangeInfo removed(); 30 : 31 : public static Builder builder() { 32 2 : return new AutoValue_ChangeInfoDifference.Builder(); 33 : } 34 : 35 : @AutoValue.Builder 36 2 : public abstract static class Builder { 37 : 38 : public abstract Builder setOldChangeInfo(ChangeInfo oldChangeInfo); 39 : 40 : public abstract Builder setNewChangeInfo(ChangeInfo newChangeInfo); 41 : 42 : public abstract Builder setAdded(ChangeInfo added); 43 : 44 : public abstract Builder setRemoved(ChangeInfo removed); 45 : 46 : public abstract ChangeInfoDifference build(); 47 : } 48 : }