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

io.github.lunasaw.gb28181.common.entity.control.DeviceControlPtz Maven / Gradle / Ivy

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

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 lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * @author luna
 */
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@XmlRootElement(name = "Control")
@XmlAccessorType(XmlAccessType.FIELD)
public class DeviceControlPtz extends DeviceControlBase {

    @XmlElement(name = "Info")
    private PtzInfo ptzInfo;

    @XmlElement(name = "PTZCmd")
    private String ptzCmd;

    public DeviceControlPtz(String cmdType, String sn, String deviceId) {
        super(cmdType, sn, deviceId);
        this.setControlType("GuardCmd");
    }

    @Getter
    @Setter
    @XmlRootElement(name = "Info")
    @XmlAccessorType(XmlAccessType.FIELD)
    public static class PtzInfo {
        @XmlElement(name = "ControlPriority")
        public Integer controlPriority = 5;

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy