Class TestAutomationResource
- java.lang.Object
-
- lumis.service.portalmanagement.testautomation.TestAutomationResource
-
@Path("/lumis/service/portalmanagement/testautomation") public class TestAutomationResource extends java.lang.Object
Test automation resource.- Since:
- 10.4.0
- Version:
- $Revision: 21230 $ $Date: 2018-04-24 19:07:57 -0300 (Tue, 24 Apr 2018) $
-
-
Constructor Summary
Constructors Constructor Description TestAutomationResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getErrorsSince(@NotNull @Size(min=23,max=23) java.lang.String since)
Returns the info log error messages since the given date time.java.lang.String
getLastInfoLogMessageDate()
Returns the last info log message's date time as a string.java.lang.String
getTestsRunningStatus()
-
-
-
Method Detail
-
getLastInfoLogMessageDate
@Path("/log/info/messages/last/dateTime") @GET public java.lang.String getLastInfoLogMessageDate() throws java.lang.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:
java.lang.Exception
- Since:
- 10.4.0
-
getErrorsSince
@Path("/log/info/messages/errors") @GET public java.lang.String getErrorsSince(@NotNull @Size(min=23,max=23) @QueryParam("since") @NotNull @Size(min=23,max=23) java.lang.String since) throws java.lang.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:
java.lang.Exception
- Since:
- 10.4.0
-
-