Package ru.testit.models
Class MainContainer
- java.lang.Object
-
- ru.testit.models.MainContainer
-
- All Implemented Interfaces:
java.io.Serializable
public class MainContainer extends java.lang.Object implements java.io.SerializableModel describes main container with.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MainContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<FixtureResult>getAfterMethods()Gets afterMethods.java.util.List<FixtureResult>getBeforeMethods()Gets beforeMethods.java.util.List<java.lang.String>getChildren()Gets children.java.lang.LonggetStart()Gets start.java.lang.LonggetStop()Gets stop.java.lang.StringgetUuid()Gets uuid.MainContainersetAfterMethods(java.util.List<FixtureResult> afterMethods)Sets afterMethods.MainContainersetBeforeMethods(java.util.List<FixtureResult> beforeMethods)Sets beforeMethods.MainContainersetChildren(java.util.List<java.lang.String> children)Sets children.MainContainersetStart(java.lang.Long start)Sets start.MainContainersetStop(java.lang.Long stop)Sets stop.MainContainersetUuid(java.lang.String uuid)Sets uuid.java.lang.StringtoString()
-
-
-
Method Detail
-
getUuid
public java.lang.String getUuid()
Gets uuid.- Returns:
- the uuid
-
setUuid
public MainContainer setUuid(java.lang.String uuid)
Sets uuid.- Parameters:
uuid- the value- Returns:
- self for method chaining
-
getChildren
public java.util.List<java.lang.String> getChildren()
Gets children.- Returns:
- the children
-
setChildren
public MainContainer setChildren(java.util.List<java.lang.String> children)
Sets children.- Parameters:
children- the children- Returns:
- self for method chaining
-
getBeforeMethods
public java.util.List<FixtureResult> getBeforeMethods()
Gets beforeMethods.- Returns:
- the beforeMethods
-
setBeforeMethods
public MainContainer setBeforeMethods(java.util.List<FixtureResult> beforeMethods)
Sets beforeMethods.- Parameters:
beforeMethods- the beforeMethods- Returns:
- self for method chaining
-
getAfterMethods
public java.util.List<FixtureResult> getAfterMethods()
Gets afterMethods.- Returns:
- the afterMethods
-
setAfterMethods
public MainContainer setAfterMethods(java.util.List<FixtureResult> afterMethods)
Sets afterMethods.- Parameters:
afterMethods- the afterMethods- Returns:
- self for method chaining
-
getStart
public java.lang.Long getStart()
Gets start.- Returns:
- the start
-
setStart
public MainContainer setStart(java.lang.Long start)
Sets start.- Parameters:
start- the value- Returns:
- self for method chaining
-
getStop
public java.lang.Long getStop()
Gets stop.- Returns:
- the stop
-
setStop
public MainContainer setStop(java.lang.Long stop)
Sets stop.- Parameters:
stop- the value- Returns:
- self for method chaining
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-