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

org.umlg.runtime.validation.Url Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
package org.umlg.runtime.validation;

public class Url implements UmlgValidation {
	private String protocol;
	private String host;
	private int port;
	private String regexp;
	private String flag;

	public Url(String protocol, String host, int port, String regexp, String flag) {
		super();
		this.protocol = protocol;
		this.host = host;
		this.port = port;
		this.regexp = regexp;
		this.flag = flag;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy