Class TestAutomationResource
- java.lang.Object
-
- lumis.service.portalmanagement.testautomation.TestAutomationResource
-
-
Constructor Summary
Constructors Constructor Description TestAutomationResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorsSince(@NotNull @Size(min=23,max=23) String since)
Returns the info log error messages since the given date time.String
getLastInfoLogMessageDate()
Returns the last info log message's date time as a string.String
getTestsRunningStatus()
-
-
-
Method Detail
-
getLastInfoLogMessageDate
@Path("/log/info/messages/last/dateTime") @GET public String getLastInfoLogMessageDate() throws Exception
Returns the last info log message's date time as a string.- Returns:
- the last info log message's date time as a string.
- Throws:
Exception
- Since:
- 10.4.0
-
getErrorsSince
@Path("/log/info/messages/errors") @GET public String getErrorsSince(@NotNull @Size(min=23,max=23) @QueryParam("since") @NotNull @Size(min=23,max=23) String since) throws Exception
Returns the info log error messages since the given date time.- Parameters:
since
- the last date time as string (obtained viagetLastInfoLogMessageDate()
.- Returns:
- the info log error messages since the given date time.
- Throws:
Exception
- Since:
- 10.4.0
-
-