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

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

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.brm.enums;

public enum PersonFreezeOperatorEnum {
    FREEZE("freeze"),

    UNFREEZE("unfreeze");

    private String operator;

    PersonFreezeOperatorEnum(String operator) {
        this.operator = operator;
    }

    public String getOperator() {
        return operator;
    }

    public void setOperator(String operator) {
        this.operator = operator;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy