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

org.complykit.licensecheck.model.LicenseDescriptor Maven / Gradle / Ivy

package org.complykit.licensecheck.model;

public class LicenseDescriptor {
	private String code;
	private String licenseName;
	private String regex;
	
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	
	public String getLicenseName() {
		return licenseName;
	}
	public void setLicenseName(String licenseName) {
		this.licenseName = licenseName;
	}
	
	public String getRegex() {
		return regex;
	}
	public void setRegex(String regex) {
		this.regex = regex;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy