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

com.github.ddm4j.api.document.bean.ParameterVo Maven / Gradle / Ivy

package com.github.ddm4j.api.document.bean;

import java.io.Serializable;

public class ParameterVo extends ParamChildrenVo implements Serializable {
	private static final long serialVersionUID = 1L;
	private String regexp;
	private Integer min;
	private Integer max;
	private boolean url;

	public Integer getMin() {
		return min;
	}

	public void setMin(Integer min) {
		this.min = min;
	}

	public Integer getMax() {
		return max;
	}

	public void setMax(Integer max) {
		this.max = max;
	}

	public String getRegexp() {
		return regexp;
	}

	public void setRegexp(String regexp) {
		this.regexp = regexp;
	}

	public boolean isUrl() {
		return url;
	}

	public void setUrl(boolean url) {
		this.url = url;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy