/* * Copyright 2011 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.informer.domain.questionnaire.framework; /** * Holds the Statics for the Condition information. * * @author Derek Rendall */ public interface ConditionConstants { public static String OP_EVAL_UPPER = "EVAL"; public static String OP_IS_UPPER = "IS"; public static String OP_MAPPED_TO_VALUE_UPPER = "MAPPED"; public static String OP_IS_NOT_UPPER = "IS NOT"; public static String OP_NOOP_UPPER = "NOOP"; public static String VALUE_EMPTY_UPPER = "EMPTY"; public static String OP_IS_CHANGED_TO_UPPER = "IS CHANGED TO"; public static String OP_IS_CHANGED_FROM_UPPER = "IS CHANGED FROM"; }