Created
April 24, 2022 13:32
-
-
Save onepointconsulting/2a1ddfae9c009bd19f5f66c6a941b4f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class YAMLS3Connector extends BaseConnector { | |
@Override | |
public Browser createBrowser(BrowseContext browseContext) { | |
return new YAMLS3Browser(browseContext); | |
} | |
@Override | |
protected Operation createGetOperation(OperationContext context) { | |
return new GetOperation(new S3Connection<ConnectorContext>(context)); | |
} | |
@Override | |
protected Operation createExecuteOperation(OperationContext context) { | |
return new ExecuteOperation(new S3Connection<>(context)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment