001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006
007package org.fcrepo.camel.common.config;
008
009/**
010 * This condition enables a bean/configuration when the specified property is false
011 *
012 * Implementations must provide a no-arg constructor.
013 *
014 * @author pwinckles
015 */
016public abstract class ConditionOnPropertyFalse extends org.fcrepo.camel.common.config.ConditionOnProperty<Boolean> {
017
018    public ConditionOnPropertyFalse(final String name, final boolean defaultValue) {
019        super(name, false, defaultValue, Boolean.class);
020    }
021
022}