org.octopusden.octopus.escrow.dto.ComponentArtifactConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of component-resolver-api Show documentation
Show all versions of component-resolver-api Show documentation
Octopus module: component-resolver-api
The newest version!
package org.octopusden.octopus.escrow.dto;
public class ComponentArtifactConfiguration {
private final String groupPattern;
private final String artifactPattern;
public ComponentArtifactConfiguration(final String groupPattern, final String artifactPattern) {
this.groupPattern = groupPattern;
this.artifactPattern = artifactPattern;
}
public String getGroupPattern() {
return groupPattern;
}
public String getArtifactPattern() {
return artifactPattern;
}
}