Package Services.ResponseAnalyzer
Class ResponseUnstructured
java.lang.Object
Services.ResponseAnalyzer.ResponseUnstructured
- All Implemented Interfaces:
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 Summary
ConstructorsConstructorDescriptionConstructs an empty ResponseUnstructured object with an initialized list of objects. -
Method Summary
Modifier and TypeMethodDescriptionReturns the list of objects extracted from the HTTP response.
-
Constructor Details
-
ResponseUnstructured
public ResponseUnstructured()Constructs an empty ResponseUnstructured object with an initialized list of objects.
-
-
Method Details
-
getObjects
Returns the list of objects extracted from the HTTP response.- Returns:
- a list of parsed objects, which may include
AtomicObjectandStructuredObject
-