Class ProcessStepRefWithMatchCT
- java.lang.Object
-
- fi.tut.mei.matchmaking.model.xml.msg.ProcessStepRefCT
-
- fi.tut.mei.matchmaking.model.xml.msg.ProcessStepRefWithMatchCT
-
public class ProcessStepRefWithMatchCT extends ProcessStepRefCT
Process Step Reference with Match informationJava class for ProcessStepRefWithMatch_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ProcessStepRefWithMatch_CT"> <complexContent> <extension base="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}ProcessStepRef_CT"> <sequence> <choice> <element name="NoMatchRequired"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="avgProcessingTime" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="isHumanProcess" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType> </element> <element name="NoMatch"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> </restriction> </complexContent> </complexType> </element> <element ref="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}Match" maxOccurs="unbounded"/> </choice> <element name="PrecededBy" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="idRef" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> <attribute name="gidRef" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType> </element> </sequence> </extension> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProcessStepRefWithMatchCT.NoMatch
Java class for anonymous complex type.static class
ProcessStepRefWithMatchCT.NoMatchRequired
Java class for anonymous complex type.static class
ProcessStepRefWithMatchCT.PrecededBy
Java class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<Match>
match
protected ProcessStepRefWithMatchCT.NoMatch
noMatch
protected ProcessStepRefWithMatchCT.NoMatchRequired
noMatchRequired
protected List<ProcessStepRefWithMatchCT.PrecededBy>
precededBy
-
Fields inherited from class fi.tut.mei.matchmaking.model.xml.msg.ProcessStepRefCT
gid, id, matchmakingRequired, refURL, sequenceOrder
-
-
Constructor Summary
Constructors Constructor Description ProcessStepRefWithMatchCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Match>
getMatch()
Gets the value of the match property.ProcessStepRefWithMatchCT.NoMatch
getNoMatch()
Gets the value of the noMatch property.ProcessStepRefWithMatchCT.NoMatchRequired
getNoMatchRequired()
Gets the value of the noMatchRequired property.List<ProcessStepRefWithMatchCT.PrecededBy>
getPrecededBy()
Gets the value of the precededBy property.void
setNoMatch(ProcessStepRefWithMatchCT.NoMatch value)
Sets the value of the noMatch property.void
setNoMatchRequired(ProcessStepRefWithMatchCT.NoMatchRequired value)
Sets the value of the noMatchRequired property.-
Methods inherited from class fi.tut.mei.matchmaking.model.xml.msg.ProcessStepRefCT
getGid, getId, getRefURL, getSequenceOrder, isMatchmakingRequired, setGid, setId, setMatchmakingRequired, setRefURL, setSequenceOrder
-
-
-
-
Field Detail
-
noMatchRequired
protected ProcessStepRefWithMatchCT.NoMatchRequired noMatchRequired
-
noMatch
protected ProcessStepRefWithMatchCT.NoMatch noMatch
-
precededBy
protected List<ProcessStepRefWithMatchCT.PrecededBy> precededBy
-
-
Method Detail
-
getNoMatchRequired
public ProcessStepRefWithMatchCT.NoMatchRequired getNoMatchRequired()
Gets the value of the noMatchRequired property.- Returns:
- possible object is
ProcessStepRefWithMatchCT.NoMatchRequired
-
setNoMatchRequired
public void setNoMatchRequired(ProcessStepRefWithMatchCT.NoMatchRequired value)
Sets the value of the noMatchRequired property.- Parameters:
value
- allowed object isProcessStepRefWithMatchCT.NoMatchRequired
-
getNoMatch
public ProcessStepRefWithMatchCT.NoMatch getNoMatch()
Gets the value of the noMatch property.- Returns:
- possible object is
ProcessStepRefWithMatchCT.NoMatch
-
setNoMatch
public void setNoMatch(ProcessStepRefWithMatchCT.NoMatch value)
Sets the value of the noMatch property.- Parameters:
value
- allowed object isProcessStepRefWithMatchCT.NoMatch
-
getMatch
public List<Match> getMatch()
Gets the value of the match 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 match property.For example, to add a new item, do as follows:
getMatch().add(newItem);
Objects of the following type(s) are allowed in the list
Match
-
getPrecededBy
public List<ProcessStepRefWithMatchCT.PrecededBy> getPrecededBy()
Gets the value of the precededBy 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 precededBy property.For example, to add a new item, do as follows:
getPrecededBy().add(newItem);
Objects of the following type(s) are allowed in the list
ProcessStepRefWithMatchCT.PrecededBy
-
-