Class ResponseUnstructured

java.lang.Object
Services.ResponseAnalyzer.ResponseUnstructured
All Implemented Interfaces:
Serializable

public class ResponseUnstructured extends Object implements Serializable
Represents an unstructured HTTP response containing a collection of parsed objects.

This class holds a list of objects extracted from a response. The list can include AtomicObject and StructuredObject instances, representing atomic values or nested structured parts of the response, respectively.

Typically, instances of this class are populated by ResponseAnalyzer.getUnstructuredResponse(String).

See Also:
  • Constructor Details

    • ResponseUnstructured

      public ResponseUnstructured()
      Constructs an empty ResponseUnstructured object with an initialized list of objects.
  • Method Details

    • getObjects

      public List<Object> getObjects()
      Returns the list of objects extracted from the HTTP response.
      Returns:
      a list of parsed objects, which may include AtomicObject and StructuredObject