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

org.kuali.common.util.project.model.Feature Maven / Gradle / Ivy

There is a newer version: 4.4.17
Show newest version
package org.kuali.common.util.project.model;

import org.kuali.common.util.Assert;

public final class Feature {

	public Feature(FeatureIdentifier identifier, String name, String description) {
		Assert.noNulls(identifier);
		Assert.noBlanks(name);
		this.identifier = identifier;
		this.name = name;
		this.description = description;
	}

	private final FeatureIdentifier identifier;
	private final String name;
	private final String description;

	public FeatureIdentifier getIdentifier() {
		return identifier;
	}

	public String getName() {
		return name;
	}

	public String getDescription() {
		return description;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy