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

com.iohao.game.common.validation.Validator Maven / Gradle / Ivy

There is a newer version: 21.20
Show newest version
/*
 * # iohao.com . 渔民小镇
 * Copyright (C) 2021 - present double joker ([email protected]) . All Rights Reserved.
 *
 * 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 com.iohao.game.common.validation;

/**
 * 定义数据校验器接口
 *
 * @author shenjk
 * @date 2022-09-26
 */
public interface Validator {

    /**
     * 执行校验
     *
     * @param data   校验数据
     * @param groups 分组信息
     * @return 校验不通过的返回信息
     */
    String validate(Object data, Class... groups);

    /**
     * 参数类型是否需要验证
     *
     * @param paramClazz 参数类型
     * @return true 这是一个需要验证的参数
     */
    boolean isValidator(Class paramClazz);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy