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

net.joala.condition.DefaultConditionFactory Maven / Gradle / Ivy

/*
 * Copyright 2012 CoreMedia AG
 *
 * This file is part of Joala.
 *
 * Joala is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Joala is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Joala.  If not, see .
 */

package net.joala.condition;

import net.joala.expression.Expression;
import net.joala.time.Timeout;

import javax.annotation.Nonnull;

import static com.google.common.base.Preconditions.checkNotNull;

/**
 * 

* Default implementation of {@link ConditionFactory}. *

* * @since 9/3/12 */ public class DefaultConditionFactory implements ConditionFactory { @Nonnull private final Timeout timeout; /** *

* Create factory for conditions with the given timeout behavior. *

* * @param timeout the timeout behavior (i. e. the default time to time out) */ public DefaultConditionFactory(@Nonnull final Timeout timeout) { this.timeout = timeout; } @Nonnull @Override public BooleanCondition booleanCondition(@Nonnull final Expression expression) { checkNotNull(expression, "Expression must not be null"); return new DefaultBooleanCondition(expression, timeout); } @Nonnull @Override public Condition condition(@Nonnull final Expression expression) { checkNotNull(expression, "Expression must not be null"); return new DefaultCondition(expression, timeout); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy