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

io.github.primelib.jira4j.restv3.model.GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig Maven / Gradle / Ivy

The newest version!
package io.github.primelib.jira4j.restv3.model;

import java.util.function.Consumer;
import org.jetbrains.annotations.ApiStatus;
import javax.annotation.processing.Generated;
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 com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig
 *
 */
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@JsonPropertyOrder({
    "comment",
    "domain",
    "httpOnly",
    "maxAge",
    "name",
    "path",
    "secure"
})
@JsonTypeName("getWorkflowTransitionRuleConfigurations_request_asyncContext_request_servletContext_sessionCookieConfig")
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig {

    @JsonProperty("comment")
    protected String comment;

    @JsonProperty("domain")
    protected String domain;

    @JsonProperty("httpOnly")
    protected Boolean httpOnly;

    @JsonProperty("maxAge")
    protected Integer maxAge;

    @JsonProperty("name")
    protected String name;

    @JsonProperty("path")
    protected String path;

    @JsonProperty("secure")
    protected Boolean secure;

    /**
     * Constructs a validated instance of {@link GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig}.
     *
     * @param spec the specification to process
     */
    public GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig(Consumer spec) {
        spec.accept(this);
    }

    /**
     * Constructs a validated instance of {@link GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig}.
     * 

* NOTE: This constructor is not considered stable and may change if the model is updated. Consider using {@link #GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig(Consumer)} instead. * @param comment comment * @param domain domain * @param httpOnly httpOnly * @param maxAge maxAge * @param name name * @param path path * @param secure secure */ @ApiStatus.Internal public GetWorkflowTransitionRuleConfigurationsRequestAsyncContextRequestServletContextSessionCookieConfig(String comment, String domain, Boolean httpOnly, Integer maxAge, String name, String path, Boolean secure) { this.comment = comment; this.domain = domain; this.httpOnly = httpOnly; this.maxAge = maxAge; this.name = name; this.path = path; this.secure = secure; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy