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

net.nemerosa.ontrack.model.structure.BranchTemplateInstanceSingleRequest Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.model.structure;

import lombok.Data;

import javax.validation.constraints.NotNull;
import javax.validation.constraints.Pattern;
import java.util.Map;

/**
 * Request to create a template instance for one name only.
 */
@Data
public class BranchTemplateInstanceSingleRequest {

    /**
     * Name of the instance to create
     */
    @NotNull(message = "The name is required.")
    @Pattern(regexp = NameDescription.NAME, message = "The name " + NameDescription.NAME_MESSAGE_SUFFIX)
    private final String name;

    /**
     * Manual expressions
     */
    private final boolean manual;

    /**
     * List of parameters
     */
    private final Map parameters;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy