/** * Copyright (c) 2009 - 2016 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package org.candlepin.util; import org.candlepin.common.config.Configuration; import org.candlepin.config.ConfigProperties; import com.google.inject.Inject; import org.xnap.commons.i18n.I18n; import java.util.Set; /** * The FactValidator is a PropertyValidator implementation, configured to validate consumer facts. */ public class FactValidator extends PropertyValidator { /** The maximum length of any fact key (name) or value */ public static final int FACT_MAX_LENGTH = 255; @Inject public FactValidator(Configuration config, I18n i18n) { Set<String> attributes; // Add integer attributes... attributes = config.getSet(ConfigProperties.INTEGER_FACTS, null); if (attributes != null) { for (String key : attributes) { this.validators.put(key, new PropertyValidator.IntegerValidator(i18n, "fact")); } } // Add non-negative integer attributes... attributes = config.getSet(ConfigProperties.NON_NEG_INTEGER_FACTS, null); if (attributes != null) { for (String key : attributes) { this.validators.put(key, new PropertyValidator.NonNegativeIntegerValidator(i18n, "fact")); } } // Add global validators... this.globalValidators.add(new PropertyValidator.LengthValidator(i18n, "fact", FACT_MAX_LENGTH)); } }