com.vmware.pbm.PbmPlacementMatchingReplicationResources Maven / Gradle / Ivy
package com.vmware.pbm;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.ReplicationGroupId;
/**
* Java class for PbmPlacementMatchingReplicationResources complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmPlacementMatchingReplicationResources">
* <complexContent>
* <extension base="{urn:pbm}PbmPlacementMatchingResources">
* <sequence>
* <element name="replicationGroup" type="{urn:vim25}ReplicationGroupId" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmPlacementMatchingReplicationResources", propOrder = {
"replicationGroup"
})
public class PbmPlacementMatchingReplicationResources
extends PbmPlacementMatchingResources
{
protected List replicationGroup;
/**
* Gets the value of the replicationGroup property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the replicationGroup property.
*
*
* For example, to add a new item, do as follows:
*
* getReplicationGroup().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ReplicationGroupId }
*
*
*/
public List getReplicationGroup() {
if (replicationGroup == null) {
replicationGroup = new ArrayList();
}
return this.replicationGroup;
}
}