Untitled

 avatar
vas
plain_text
2 months ago
266 B
2
Indexable
private JsonNode mockJsonNodeWithKeys() {
    ObjectNode mockNode = new ObjectMapper().createObjectNode();
    mockNode.put("bucket", "mockBucketId");
    mockNode.put("api_key", "mockApiKey");
    mockNode.put("secret_key", "mockSecretKey");
    return mockNode;
}
Leave a Comment