Lines Matching refs:condition
28 * Map of condition names to condition instances.
34 * Map of HTTP response codes to condition instances.
102 create("undefined-condition", "Unknown or undefined error "
103 + "condition.");
106 * Condition name.
119 final String condition,
121 cond = condition;
129 final String condition,
131 return createWithCode(condition, message, null);
138 final String condition,
141 if (condition == null) {
143 "condition may not be null"));
149 if (COND_TO_INSTANCE.get(condition) != null) {
151 "Multiple definitions of condition: " + condition));
154 new TerminalBindingCondition(condition, message);
155 COND_TO_INSTANCE.put(condition, result);
167 * Lookup the terminal binding condition instance with the condition
170 * @param condStr condition name
171 * @return terminal binding condition instance, or {@code null} if no
179 * Lookup the terminal binding condition instance associated with the
183 * @return terminal binding condition instance, or {@code null} if no
191 * Get the name of the condition.
193 * @return condition name
200 * Get the human readable error message associated with this condition.