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

com.dahuatech.icc.brm.enums.EventCenterMessageMethod Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
/*
 *
 *   *********************** 版权声明 ***********************************
 *
 *   版权所有:浙江大华技术股份有限公司
 *   ©CopyRight DahuaTech 2019
 *
 *   *******************************************************************
 *
 */

package com.dahuatech.icc.brm.enums;

/**
 * 事件中心消息类型 method
 **/
public enum  EventCenterMessageMethod {
    /**
     * 设备/通道状态变更
     */
    DEV_CH_NODE_STATUS("node.status");

    private String method;

    EventCenterMessageMethod(String method) {
        this.method = method;
    }

    public String getMethod() {
        return method;
    }

    public void setMethod(String method) {
        this.method = method;
    }

    public boolean eq(String method){
        return this.method.equals(method);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy