Package jetbrains.buildServer.tests
Class TestResponsibilityData
- java.lang.Object
-
- jetbrains.buildServer.tests.TestResponsibilityData
-
public class TestResponsibilityData extends Object
This class contains all necessary information to be sent via XmlRpc to remote client about responsibility per test
-
-
Constructor Summary
Constructors Constructor Description TestResponsibilityData(String testName, ResponsibilityEntry.State state, Date updateDate, String comment, User responsibleUser, User reporterUser, ResponsibilityEntry.RemoveMethod removeMethod)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestResponsibilityData
createOn(TestNameResponsibilityEntry entry)
static TestResponsibilityData
createOn(TestName testName, ResponsibilityEntry entry)
boolean
equals(Object o)
String
getComment()
ResponsibilityEntry.RemoveMethod
getRemoveMethod()
User
getReporterUser()
User
getResponsibleUser()
ResponsibilityEntry.State
getState()
String
getTestName()
Date
getUpdateDate()
int
hashCode()
-
-
-
Constructor Detail
-
TestResponsibilityData
public TestResponsibilityData(@NotNull String testName, @NotNull ResponsibilityEntry.State state, @NotNull Date updateDate, @NotNull String comment, @NotNull User responsibleUser, @Nullable User reporterUser, @NotNull ResponsibilityEntry.RemoveMethod removeMethod)
-
-
Method Detail
-
createOn
@NotNull public static TestResponsibilityData createOn(@NotNull TestNameResponsibilityEntry entry)
-
createOn
@NotNull public static TestResponsibilityData createOn(@NotNull TestName testName, @NotNull ResponsibilityEntry entry)
-
getTestName
@NotNull public String getTestName()
-
getState
@NotNull public ResponsibilityEntry.State getState()
-
getUpdateDate
@NotNull public Date getUpdateDate()
-
getComment
@NotNull public String getComment()
-
getResponsibleUser
@NotNull public User getResponsibleUser()
-
getReporterUser
@Nullable public User getReporterUser()
-
getRemoveMethod
@NotNull public ResponsibilityEntry.RemoveMethod getRemoveMethod()
-
-