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

hudson.plugins.scm_sync_configuration.strategies.model.PageMatcher Maven / Gradle / Ivy

Go to download

SCM Sync Configuration Hudson plugin is aimed at 2 main features : First, keep sync'ed your config.xml (and other ressources) hudson files with a SCM repository (backup), Secondly, track changes (and author) made on every file with commit messages.

The newest version!
package hudson.plugins.scm_sync_configuration.strategies.model;

import java.util.regex.Pattern;

public class PageMatcher {

	private Pattern urlRegex;
	private String targetFormName;
	
	public PageMatcher(String _urlRegexStr, String _targetFormName){
		this.urlRegex = Pattern.compile(_urlRegexStr);
		this.targetFormName = _targetFormName;
	}

	public Pattern getUrlRegex() {
		return urlRegex;
	}

	public String getTargetFormName() {
		return targetFormName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy