- Type Parameters:
- I- the input type of the client
- O- the output type of the client
 
            Examples:
 
            SampleClient indicates that the client accepts a- JsonNodeand returns an- InputStreamSampleClient indicates that the client accepts an- InputStreamand returns
            nothing
public class SampleClient<I,O>
extends Object
Sample client used throughout the sample project when demonstrating how to send data to a target system and,
 potentially, return a response. The generic input/output types allow each sample to control the types of data used.
 This is only a sample. Connector developers should not use this class directly. In an actual connector
 implementation, this would be replaced by the actual client for the target system.