/* * (C) Copyright 2013 Kurento (http://kurento.org/) * * 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.kurento.commons.exception; /** * Assertion class to validate parameters within Content API. * * @author Boni GarcĂ­a (bgarcia@gsyc.es) * @version 1.0.0 * */ public class Assert { /** * Asserts that an object is not null; if it is null, a KurentoMediaFrameworkException is thrown. * * @param object * Object to be checked whether or not is null * @param errorCode * Error code which determines the exception to be raise if the object is null */ @Deprecated public static void notNull(Object object, int errorCode) { notNull(object, "", errorCode); } /** * Asserts that an object is not null; if it is null, a KurentoMediaFrameworkException is thrown. * * @param object * Object to be checked whether or not is null */ public static void notNull(Object object) { notNull(object, ""); } /** * Asserts that an object is not null; if it is null, a KurentoMediaFrameworkException is thrown. * In addition, a message passed as parameter is appended at the end of the error description. * * @param object * Object to be checked whether or not is null * @param errorCode * Error code which determines the exception to be raise if the object is null * @param message * Message to be appended at the end of the description error */ @Deprecated public static void notNull(Object object, String message, int errorCode) { if (object == null) { throw new KurentoException(message + ' ' + errorCode); } } /** * Asserts that an object is not null; if it is null, a KurentoMediaFrameworkException is thrown. * In addition, a message passed as parameter is appended at the end of the error description. * * @param object * Object to be checked whether or not is null * @param message * Message to be appended at the end of the description error */ public static void notNull(Object object, String message) { if (object == null) { throw new KurentoException(message); } } /** * Asserts whether or not a condition is met; if not, a KurentoMediaFrameworkException is thrown. * In addition, a message passed as parameter is appended at the end of the error description. * * @param condition * Boolean condition to be checked * @param errorCode * Error code which determines the exception to be raise if the condition is not met */ @Deprecated public static void isTrue(boolean condition, int errorCode) { isTrue(condition, "", errorCode); } /** * Asserts whether or not a condition is met; if not, a KurentoMediaFrameworkException is thrown. * * @param condition * Boolean condition to be checked * @param message * the message to show in case the assertion fails * @param errorCode * Error code which determines the exception to be raise if the condition is not met */ @Deprecated public static void isTrue(boolean condition, String message, int errorCode) { if (!condition) { throw new KurentoException(message + ' ' + errorCode); } } }