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

io.github.lunasaw.gb28181.common.entity.response.DeviceSubscribe Maven / Gradle / Ivy

The newest version!
package io.github.lunasaw.gb28181.common.entity.response;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

import io.github.lunasaw.gb28181.common.entity.base.DeviceBase;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * 
 * 
 * Catalog
 * sn
 * channelId
 * OK
 * 
 * 
 * @author luna
 */
@Getter
@Setter
@NoArgsConstructor
@XmlRootElement(name = "Response")
@XmlAccessorType(XmlAccessType.FIELD)
public class DeviceSubscribe extends DeviceBase {

    /**
     * OK
     */
    @XmlElement(name = "Result")
    private String Result = "OK";

    public DeviceSubscribe(String cmdType, String sn, String deviceId) {
        super(cmdType, sn, deviceId);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy