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

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

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

import lombok.Data;
import lombok.EqualsAndHashCode;

import java.beans.ConstructorProperties;
import java.util.List;

/**
 * Request for the clone of a branch into another one.
 */
@EqualsAndHashCode(callSuper = false)
@Data
public class BranchCloneRequest extends AbstractCopyRequest {

    /**
     * Target branch name
     */
    private final String name;

    @ConstructorProperties({"name", "replacements"})
    public BranchCloneRequest(String name, List replacements) {
        super(replacements);
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy