// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.12.12 at 03:51:35 PM CET // package com.telefonica.schemas.nuba_model.exp; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for CIM_SoftwareFeature_Type complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CIM_SoftwareFeature_Type"> * <complexContent> * <extension base="{http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_SoftwareFeature}CIM_SoftwareFeature_Type"> * <sequence> * <element name="hasCIM_SoftwareFeatureSoftwareElements" type="{http://schemas.telefonica.com/nuba-model/exp}CIM_SoftwareElementType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CIM_SoftwareFeature_Type", propOrder = { "hasCIMSoftwareFeatureSoftwareElements" }) public class CIMSoftwareFeatureType extends org.dmtf.schemas.wbem.wscim._1.cim_schema._2.cim_softwarefeature.CIMSoftwareFeatureType { @XmlElement(name = "hasCIM_SoftwareFeatureSoftwareElements") protected List<CIMSoftwareElementType> hasCIMSoftwareFeatureSoftwareElements; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the hasCIMSoftwareFeatureSoftwareElements property. * * <p> * 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 <CODE>set</CODE> method for the hasCIMSoftwareFeatureSoftwareElements property. * * <p> * For example, to add a new item, do as follows: * <pre> * getHasCIMSoftwareFeatureSoftwareElements().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CIMSoftwareElementType } * * */ public List<CIMSoftwareElementType> getHasCIMSoftwareFeatureSoftwareElements() { if (hasCIMSoftwareFeatureSoftwareElements == null) { hasCIMSoftwareFeatureSoftwareElements = new ArrayList<CIMSoftwareElementType>(); } return this.hasCIMSoftwareFeatureSoftwareElements; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }