net.nemerosa.ontrack.model.structure.BranchBulkUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.structure;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.beans.ConstructorProperties;
import java.util.List;
/**
* Request for the bulk update of a branch.
*/
@EqualsAndHashCode(callSuper = false)
@Data
public class BranchBulkUpdateRequest extends AbstractCopyRequest {
@ConstructorProperties({"replacements"})
public BranchBulkUpdateRequest(List replacements) {
super(replacements);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy