io.github.primelib.jira4j.restv3.spec.RemoveLevelOperationSpec Maven / Gradle / Ivy
Show all versions of jira4j-rest-v3 Show documentation
package io.github.primelib.jira4j.restv3.spec;
import java.util.Objects;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.annotation.processing.Generated;
import java.util.Set;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.util.function.Consumer;
/**
* RemoveLevelSpec
*
* Specification for the RemoveLevel operation.
*
* Remove issue security level
*/
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class RemoveLevelOperationSpec {
/**
* allows to disable validation of the spec, use with care!
*/
@ApiStatus.Experimental
public static Boolean VALIDATION_ENABLED = true;
/**
* The ID of the issue security scheme.
*/
@NotNull
private String schemeId;
/**
* The ID of the issue security level to remove.
*/
@NotNull
private String levelId;
/**
* The ID of the issue security level that will replace the currently selected level.
*/
@Nullable
private String replaceWith;
/**
* Constructs a validated instance of {@link RemoveLevelOperationSpec}.
*
* @param spec the specification to process
*/
@ApiStatus.Internal
public RemoveLevelOperationSpec(Consumer spec) {
spec.accept(this);
if (VALIDATION_ENABLED)
validate();
}
/**
* Constructs a validated instance of {@link RemoveLevelOperationSpec}.
*
* NOTE: This constructor is not considered stable and may change if the operation is updated.
* @param schemeId The ID of the issue security scheme.
* @param levelId The ID of the issue security level to remove.
* @param replaceWith The ID of the issue security level that will replace the currently selected level.
*/
@ApiStatus.Internal
public RemoveLevelOperationSpec(String schemeId, String levelId, String replaceWith) {
this.schemeId = schemeId;
this.levelId = levelId;
this.replaceWith = replaceWith;
if (VALIDATION_ENABLED)
validate();
}
/**
* Validates the Spec, will throw a exception if required parameters are missing
*
* @throws NullPointerException
*/
public void validate() {
Objects.requireNonNull(schemeId, "schemeId is a required parameter!");
Objects.requireNonNull(levelId, "levelId is a required parameter!");
}
}