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

com.emc.storageos.model.customconfig.CustomConfigRuleList Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2014 EMC Corporation
 * All Rights Reserved
 */

package com.emc.storageos.model.customconfig;

import java.util.List;

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

@XmlRootElement(name = "rules")
public class CustomConfigRuleList {
    private List rules;

    public CustomConfigRuleList() {
    }

    public CustomConfigRuleList(List rules) {
        this.rules = rules;
    }

    @XmlElement(name = "rule")
    public List getRules() {
        return rules;
    }

    public void setRules(List rules) {
        this.rules = rules;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy