/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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.apache.dolphinscheduler.plugin.alert.wechat; /** * WeChatAlertParamsConstants */ public class WeChatAlertParamsConstants { static final String ENTERPRISE_WE_CHAT_CORP_ID = "enterprise.wechat.corp.id"; static final String NAME_ENTERPRISE_WE_CHAT_CORP_ID = "enterpriseWeChatCorpId"; static final String ENTERPRISE_WE_CHAT_SECRET = "enterprise.wechat.secret"; static final String NAME_ENTERPRISE_WE_CHAT_SECRET = "enterpriseWeChatSecret"; static final String ENTERPRISE_WE_CHAT_TEAM_SEND_MSG = "enterprise.wechat.team.send.msg"; static final String NAME_ENTERPRISE_WE_CHAT_TEAM_SEND_MSG = "enterpriseWeChatTeamSendMsg"; static final String ENTERPRISE_WE_CHAT_USER_SEND_MSG = "enterprise.wechat.user.send.msg"; static final String NAME_ENTERPRISE_WE_CHAT_USER_SEND_MSG = "enterpriseWeChatUserSendMsg"; static final String ENTERPRISE_WE_CHAT_AGENT_ID = "enterprise.wechat.agent.id"; static final String NAME_ENTERPRISE_WE_CHAT_AGENT_ID = "enterpriseWeChatAgentId"; static final String ENTERPRISE_WE_CHAT_USERS = "enterprise.wechat.users"; static final String NAME_ENTERPRISE_WE_CHAT_USERS = "enterpriseWeChatUsers"; }