org.jfrog.hudson.util.IncludesExcludes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artifactory Show documentation
Show all versions of artifactory Show documentation
Integrates Artifactory to Hudson
The newest version!
package org.jfrog.hudson.util;
import org.kohsuke.stapler.DataBoundConstructor;
/**
* Holds include and exclude patterns
*
* @author Noam Y. Tenne
*/
public class IncludesExcludes {
private final String includePatterns;
private final String excludePatterns;
@DataBoundConstructor
public IncludesExcludes(String includePatterns, String excludePatterns) {
this.includePatterns = includePatterns;
this.excludePatterns = excludePatterns;
}
public String getIncludePatterns() {
return includePatterns;
}
public String getExcludePatterns() {
return excludePatterns;
}
}