All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.almworks.jira.structure.api.effectbatch.EffectPair Maven / Gradle / Ivy

There is a newer version: 17.25.3
Show newest version
package com.almworks.jira.structure.api.effectbatch;

import com.almworks.jira.structure.api.generator.ActionEffect;
import com.atlassian.annotations.Internal;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

@Internal
public class EffectPair {
  public final long generatorRowId;
  public final boolean external;
  @NotNull public final ActionEffect effect;
  @Nullable public final ActionEffect inverse;

  public EffectPair(long generatorRowId, boolean external, @NotNull ActionEffect effect, @Nullable ActionEffect inverse) {
    this.generatorRowId = generatorRowId;
    this.external = external;
    this.effect = effect;
    this.inverse = inverse;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy