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

org.jfrog.hudson.release.PromotionConfig Maven / Gradle / Ivy

The newest version!
package org.jfrog.hudson.release;

import java.io.Serializable;

/**
 * @author Noam Y. Tenne
 */
public class PromotionConfig implements Serializable {

    private String targetRepository;
    private String comment;

    public PromotionConfig(String targetRepository, String comment) {
        this.targetRepository = targetRepository;
        this.comment = comment;
    }

    public String getTargetRepository() {
        return targetRepository;
    }

    public String getComment() {
        return comment;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy