Interface EtfEndpoint

  • All Superinterfaces:
    java.lang.AutoCloseable

    public interface EtfEndpoint
    extends java.lang.AutoCloseable
    An interface to communicate with a remote ETF instance. There is no permanent connection to the instance, retrieved information are cached. With each operation on the API it is checked whether information is outdated and if necessary automatically renewed.
    • Method Detail

      • available

        boolean available()
        Returns true if the endpoint is reachable.
        Returns:
        true if endpoint reachable, false otherwise
      • newAdHocTestObject

        AdHocTestObjectFactory newAdHocTestObject()
        Return a factory for creating AdHoc Test Objects
        Returns:
        AdHocTestObjectFactory for creating temporary Test Objects
      • sessionId

        java.lang.String sessionId()
        Get the currently used session ID.
        Returns:
        session UUID as string
      • close

        void close()
        Explicitly releases internal resources. Running Tests will be canceled.
        Specified by:
        close in interface java.lang.AutoCloseable