com.almworks.jira.structure.api.effectbatch.EffectPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
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