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

com.atlassian.bamboo.specs.api.model.repository.SkipDisplayNameCondition Maven / Gradle / Ivy

There is a newer version: 10.2.0
Show newest version
package com.atlassian.bamboo.specs.api.model.repository;

import com.atlassian.bamboo.specs.api.codegen.Condition;
import org.apache.commons.lang3.StringUtils;

public class SkipDisplayNameCondition implements Condition {
    @Override
    public boolean evaluate(VcsRepositoryBranchProperties properties) {
        return StringUtils.isBlank(properties.getBranchDisplayName())
                || properties.getBranchName().equals(properties.getBranchDisplayName());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy