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

com.emc.storageos.model.rdfgroup.RDFGroupList Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright 2015 EMC Corporation
 * All Rights Reserved
 */
package com.emc.storageos.model.rdfgroup;

import com.emc.storageos.model.NamedRelatedResourceRep;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;

@XmlRootElement(name = "rdf_groups")
public class RDFGroupList {
    private List rdfGroups;
    
    public RDFGroupList() {}
    
    public RDFGroupList(List rdfGroups) {
        this.rdfGroups = rdfGroups;
    }
    /**
     * List of RDF Groups
     * 
     * @valid none
     */
    @XmlElement(name = "rdf_group")
	public List getRdfGroups() {
    	 if (rdfGroups == null) {
         	rdfGroups = new ArrayList();
         }
		return rdfGroups;
	}

	public void setRdfGroups(List rdfGroups) {
		this.rdfGroups = rdfGroups;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy