Package com.indeed.proctor.common.model
Class TestMatrixVersion
- java.lang.Object
-
- com.indeed.proctor.common.model.TestMatrixVersion
-
public class TestMatrixVersion extends java.lang.ObjectThis represents what's serialized to the database, whileTestMatrixArtifactrepresents what is consumed by applications
-
-
Constructor Summary
Constructors Constructor Description TestMatrixVersion()TestMatrixVersion(TestMatrixDefinition testMatrixDefinition, java.util.Date published, java.lang.String version, java.lang.String description, java.lang.String author)TestMatrixVersion(TestMatrixVersion testMatrixVersion)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetAuthor()java.lang.StringgetDescription()java.util.DategetPublished()TestMatrixDefinitiongetTestMatrixDefinition()java.lang.StringgetVersion()inthashCode()voidsetAuthor(java.lang.String author)voidsetDescription(java.lang.String description)voidsetPublished(java.util.Date published)voidsetTestMatrixDefinition(TestMatrixDefinition testMatrixDefinition)voidsetVersion(java.lang.String version)java.lang.StringtoString()
-
-
-
Constructor Detail
-
TestMatrixVersion
public TestMatrixVersion()
-
TestMatrixVersion
public TestMatrixVersion(@Nullable TestMatrixDefinition testMatrixDefinition, @Nullable java.util.Date published, java.lang.String version, @Nullable java.lang.String description, @Nullable java.lang.String author)
-
TestMatrixVersion
public TestMatrixVersion(TestMatrixVersion testMatrixVersion)
-
-
Method Detail
-
getTestMatrixDefinition
@Nullable public TestMatrixDefinition getTestMatrixDefinition()
-
setTestMatrixDefinition
public void setTestMatrixDefinition(@Nullable TestMatrixDefinition testMatrixDefinition)
-
getPublished
@Nullable public java.util.Date getPublished()
-
setPublished
public void setPublished(@Nullable java.util.Date published)
-
getVersion
public java.lang.String getVersion()
-
setVersion
public void setVersion(java.lang.String version)
-
getDescription
@Nullable public java.lang.String getDescription()
-
setDescription
public void setDescription(@Nullable java.lang.String description)
-
getAuthor
@Nullable public java.lang.String getAuthor()
-
setAuthor
public void setAuthor(@Nullable java.lang.String author)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-