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

com.dahuatech.icc.multiinone.event.domain.MonitorVo Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.multiinone.event.domain;

import java.util.List;


/**
 * Created by 32514 on 2019-06-13.
 */
public class MonitorVo {
    private String monitor;//监听地址
    private final String monitorType = "url";//监听类型
    private List events;//监听事件

    public String getMonitor() {
        return monitor;
    }

    public void setMonitor(String monitor) {
        this.monitor = monitor;
    }

    public String getMonitorType() {
        return monitorType;
    }

    public void setMonitorType(String monitorType) {
//        this.monitorType = monitorType;
    }

    public List getEvents() {
        return events;
    }

    public void setEvents(List events) {
        this.events = events;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy