org.dromara.jpom.service.ITriggerToken Maven / Gradle / Ivy
/*
* Copyright (c) 2019 Of Him Code Technology Studio
* Jpom is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package org.dromara.jpom.service;
import cn.keepbx.jpom.model.BaseIdModel;
/**
* 带有触发器 token 相关实现服务
*
* @author bwcx_jzy
* @since 2022/7/22
*/
public interface ITriggerToken {
/**
* 类型 名称
*
* @return 数据分类名称
*/
String typeName();
/**
* 数据描述
*
* @return 描述
*/
String getDataDesc();
/**
* 判断是否存在
*
* @param dataId 数据id
* @return true 存在
*/
boolean exists(String dataId);
BaseIdModel getByKey(String keyValue);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy