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

com.qcloud.cos.model.ciModel.auditing.BaseStrategyLabel Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.ciModel.auditing;

import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.ArrayList;
import java.util.List;

public class BaseStrategyLabel {
    @XStreamImplicit(itemFieldName = "Porn")
    private List porn;
    @XStreamImplicit(itemFieldName = "Politics")
    private List politics;
    @XStreamImplicit(itemFieldName = "Terrorism")
    private List terrorism;
    @XStreamImplicit(itemFieldName = "Ads")
    private List ads;
    @XStreamImplicit(itemFieldName = "Abuse")
    private List abuse;
    @XStreamImplicit(itemFieldName = "Illegal")
    private List illegal;

    public List getPorn() {
        if (porn == null) {
            porn = new ArrayList<>();
        }
        return porn;
    }

    public void setPorn(List porn) {
        this.porn = porn;
    }

    public List getPolitics() {
        if (politics == null) {
            politics = new ArrayList<>();
        }
        return politics;
    }

    public void setPolitics(List politics) {
        this.politics = politics;
    }

    public List getTerrorism() {
        if (terrorism == null) {
            terrorism = new ArrayList<>();
        }
        return terrorism;
    }

    public void setTerrorism(List terrorism) {
        this.terrorism = terrorism;
    }

    public List getAds() {
        if (ads == null) {
            ads = new ArrayList<>();
        }
        return ads;
    }

    public void setAds(List ads) {
        this.ads = ads;
    }

    public List getAbuse() {
        if (abuse == null) {
            abuse = new ArrayList<>();
        }
        return abuse;
    }

    public void setAbuse(List abuse) {
        this.abuse = abuse;
    }

    public List getIllegal() {
        if (illegal == null) {
            illegal = new ArrayList<>();
        }
        return illegal;
    }

    public void setIllegal(List illegal) {
        this.illegal = illegal;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy