Class BusinessAndLifeCycleProperties
- java.lang.Object
-
- fi.tut.mei.matchmaking.model.xml.msg.BusinessAndLifeCycleProperties
-
public class BusinessAndLifeCycleProperties extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="BusinessProperty" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}BusinessProperty_CT" maxOccurs="unbounded" minOccurs="0"/> <element name="FailureType" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}FailureType_CT" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BusinessPropertyCT>
businessProperty
protected List<FailureTypeCT>
failureType
-
Constructor Summary
Constructors Constructor Description BusinessAndLifeCycleProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BusinessPropertyCT>
getBusinessProperty()
Gets the value of the businessProperty property.List<FailureTypeCT>
getFailureType()
Gets the value of the failureType property.
-
-
-
Field Detail
-
businessProperty
protected List<BusinessPropertyCT> businessProperty
-
failureType
protected List<FailureTypeCT> failureType
-
-
Method Detail
-
getBusinessProperty
public List<BusinessPropertyCT> getBusinessProperty()
Gets the value of the businessProperty 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 businessProperty property.For example, to add a new item, do as follows:
getBusinessProperty().add(newItem);
Objects of the following type(s) are allowed in the list
BusinessPropertyCT
-
getFailureType
public List<FailureTypeCT> getFailureType()
Gets the value of the failureType 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 failureType property.For example, to add a new item, do as follows:
getFailureType().add(newItem);
Objects of the following type(s) are allowed in the list
FailureTypeCT
-
-