001package org.kuali.common.util.project.model;
002
003import org.kuali.common.util.Assert;
004
005/**
006 * @deprecated
007 */
008@Deprecated
009public final class Feature {
010
011        public Feature(FeatureIdentifier identifier, String name, String description) {
012                Assert.noNulls(identifier);
013                Assert.noBlanks(name);
014                this.identifier = identifier;
015                this.name = name;
016                this.description = description;
017        }
018
019        private final FeatureIdentifier identifier;
020        private final String name;
021        private final String description;
022
023        public FeatureIdentifier getIdentifier() {
024                return identifier;
025        }
026
027        public String getName() {
028                return name;
029        }
030
031        public String getDescription() {
032                return description;
033        }
034
035}