I would like to provide a facade class to the existing AmazonS3Client (say MyAmazonS3Client), so that I get the flexibility to add my additional helper methods apart from the existing client. So the end users of the MyAmazonS3Client interface, should be able to instantiate the MyAmazonS3Client class and can call existing methods as well as helper methods which we write.
I would like to provide a facade class to the existing AmazonS3Client (say MyAmazonS3Client),
Share
How about extending
AmazonS3Clientadding as much helper methods as you need?